This commit is contained in:
Wolfgang Hottgenroth
2016-10-31 13:37:10 +01:00
parent 7e4bac25c8
commit 910d8c7c02
12 changed files with 1260 additions and 26 deletions

20
mqttclient.h Normal file
View File

@ -0,0 +1,20 @@
/*
* mqttclient.h
*
* Created on: 03.03.2016
* Author: wn
*/
#ifndef MQTTCLIENT_H_
#define MQTTCLIENT_H_
#include <stdint.h>
namespace MqttClientNS {
void begin();
void exec();
void sendMessage(uint32_t address, uint8_t length, uint8_t *payload);
};
#endif /* MQTTCLIENT_H_ */