更新EsptouchForIOS

This commit is contained in:
kai60
2020-06-10 20:27:25 +08:00
parent 1f69653c19
commit b8d6ad08ea
42 changed files with 1625 additions and 853 deletions
+24
View File
@@ -0,0 +1,24 @@
//
// ESPTouchDelegate.h
// EspTouchDemo
//
// Created by fby on 8/14/15.
// Copyright (c) 2015 fby. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "ESPTouchResult.h"
@protocol ESPTouchDelegate <NSObject>
/**
* when new esptouch result is added, the listener will call
* onEsptouchResultAdded callback
*
* @param result
* the Esptouch result
*/
-(void) onEsptouchResultAddedWithResult: (ESPTouchResult *) result;
@end