diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-10-11 19:16:26 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-10-11 19:16:26 +0200 |
commit | b455848ee62b06ba73801cff477c6ff214c4053e (patch) | |
tree | d23dcf59e7d485b94a90ed79ae459bd6cdad4a83 /stm32f091/esp8266.h | |
parent | acb25f74631597b2b24dca2c16da9dbb9ed2ecb1 (diff) |
stm32 esp code merged
Diffstat (limited to 'stm32f091/esp8266.h')
-rw-r--r-- | stm32f091/esp8266.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/stm32f091/esp8266.h b/stm32f091/esp8266.h new file mode 100644 index 0000000..c09a557 --- /dev/null +++ b/stm32f091/esp8266.h @@ -0,0 +1,16 @@ +#pragma once + +#include <stdint.h> + +void ws_esp8266_ATsendCommand(uint8_t* data); +int ws_esp8266_checkOK(uint8_t *receiveData,int length); +int ws_esp8266_receivingMsg(uint8_t *receiveData,int length); +int ws_esp8266_unlink(uint8_t *receiveData,int length); +void ws_esp8266_StartEsp(); +void ws_esp8266_disconnect(); +void ws_esp8266_mode(); +void ws_esp8266_connect(); +void ws_esp8266_serveraan(); +void ws_esp8266_serveruit(); +void ws_esp8266_mux(); +void ws_esp8266_close(); |