Started the rewrite of the library on this new branch. See full log.

Created a README, as yet incomplete. Added more files to the gitignore
to get rid of emacs temporary files. Currently making the mqtt_send command
independent of connecting, which is all it can do currently.
This commit is contained in:
A.M. Rowsell 2018-08-16 14:26:31 -04:00
commit cbc182fed4
Signed by: amr
GPG key ID: 0B6E2D8375CF79A9
3 changed files with 33 additions and 1 deletions

2
mqtt.c
View file

@ -83,7 +83,7 @@ LOCAL uint8_t ICACHE_FLASH_ATTR tcpConnect(void *arg) {
return 0;
}
LOCAL uint8_t ICACHE_FLASH_ATTR mqtt_connect(mqtt_session_t *session) {
LOCAL uint8_t ICACHE_FLASH_ATTR mqtt_connect(mqtt_session_t *session, uint8_t *username, uint8_t *password) {
}