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

22 lines
298 B
C++

/*
* canclient.h
*
* Created on: Oct 31, 2016
* Author: wn
*/
#ifndef CANCLIENT_H_
#define CANCLIENT_H_
#include <stdint.h>
namespace CanClientNS {
void begin();
void exec();
void sendMessage(uint32_t addr, uint8_t payloadLength, uint8_t *payload);
};
#endif /* CANCLIENT_H_ */