Wolfgang Hottgenroth bb4b7b5aa0 initial
2016-10-31 22:54:05 +01:00

22 lines
298 B
C++

/*
* canclient.h
*
* Created on: Oct 31, 2016
* Author: wn
*/
#ifndef S433CLIENT_H_
#define S433CLIENT_H_
#include <stdint.h>
namespace s433ClientNS {
void begin();
void exec();
void sendMessage(uint32_t message, uint8_t length, uint8_t protocol);
};
#endif /* S433CLIENT_H_ */