Files
MqttCanGateway/mqttclient.h
Wolfgang Hottgenroth 910d8c7c02 changes
2016-10-31 13:37:10 +01:00

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_ */