21 lines
296 B
C++
21 lines
296 B
C++
/*
|
|
* 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_ */
|