22 lines
298 B
C
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_ */
|