BayEOSArduino Library
|
#include <BaySoftwareSerial.h>
Public Member Functions | |
BaySoftwareSerial (uint8_t rxPin, uint8_t txPin, int timeout=10000) | |
int | available (void) |
int | i_available (void) |
void | begin (long baud) |
void | flush (void) |
void | end (void) |
int | read (void) |
size_t | write (uint8_t c) |
Public Member Functions inherited from BaySerialInterface | |
uint8_t | sendPayload (void) |
void | sendFrame (void) |
uint8_t | readIntoPayload (int timeout=0) |
void | sendTXBreak (void) |
Public Member Functions inherited from BayEOS | |
BayEOS (void) | |
uint8_t | sendError (const char *s) |
uint8_t | sendMessage (const char *s) |
uint8_t | createMessage (const char *s, uint8_t checksum=0, uint8_t frametype=BayEOS_Message) |
uint8_t | createActionResponse (uint8_t key, uint8_t status) |
void | startFrame (void) |
void | startFrame (uint8_t type) |
void | startOriginFrame (const char *o, uint8_t routed=0) |
void | startDataFrame (uint8_t subtype=BayEOS_Float32le, uint8_t checksum=0) |
void | startDataFrameWithOrigin (uint8_t subtype, const char *o, uint8_t checksum=0, uint8_t routed=0) |
uint8_t | addChannelValue (float v, uint8_t channel_number=0) |
uint8_t | addChannelValue (double v, uint8_t channel_number=0) |
uint8_t | addChannelValue (long v, uint8_t channel_number=0) |
uint8_t | addChannelValue (unsigned long v, uint8_t channel_number=0) |
uint8_t | addChannelValue (int v, uint8_t channel_number=0) |
uint8_t | addChannelValue (unsigned int v, uint8_t channel_number=0) |
uint8_t | addChannelValue (int8_t v, uint8_t channel_number=0) |
uint8_t | addChannelValue (uint8_t v, uint8_t channel_number=0) |
uint8_t | addChannelValue (float v, const char *channel_label) |
uint8_t | addChannelValue (double v, const char *channel_label) |
uint8_t | addChannelValue (long v, const char *channel_label) |
uint8_t | addChannelValue (unsigned long v, const char *channel_label) |
uint8_t | addChannelValue (int v, const char *channel_label) |
uint8_t | addChannelValue (unsigned int v, const char *channel_label) |
uint8_t | addChannelValue (int8_t v, const char *channel_label) |
uint8_t | addChannelValue (uint8_t v, const char *channel_label) |
uint8_t | addChecksum (void) |
uint8_t | validateChecksum (void) |
void | startRoutedFrame (uint16_t sourceMyID, uint16_t sourcePANID, uint8_t rssi=0) |
void | startDelayedFrame (unsigned long delay) |
void | startDelayedSecondFrame (unsigned long delay) |
void | startRF24Frame (uint8_t pipe) |
void | startTimestampFrame (unsigned long timestamp) |
void | startCommand (uint8_t cmd_api) |
void | startCommandResponse (uint8_t cmd_api) |
uint8_t | addToPayload (uint8_t b) |
uint8_t | addToPayload (const void *p, uint8_t length) |
uint8_t | addToPayload (const uint8_t *c) |
uint8_t | addToPayload (const char *s) |
uint8_t | addToPayload (float f) |
uint8_t | addToPayload (unsigned long l) |
uint8_t | addToPayload (long l) |
uint8_t | addToPayload (int w) |
uint8_t | addToPayload (uint16_t w) |
uint8_t | getPayloadBytesLeft (void) const |
uint8_t | getPayloadLength (void) const |
uint8_t | getPacketLength (void) const |
const uint8_t * | getPayload (void) const |
uint8_t | getPayload (uint8_t index) const |
uint8_t | sendOrBuffer (void) |
uint8_t | sendFromBuffer (void) |
uint8_t | writeToBuffer (void) |
uint8_t | readFromBuffer (void) |
uint8_t | readBinaryFromBuffer (unsigned long pos) |
uint8_t | readBinaryFromBuffer (unsigned long pos, unsigned long end, unsigned long vpos) |
void | setBuffer (BayEOSBuffer &buffer, uint16_t max_skip=0) |
Additional Inherited Members | |
Public Attributes inherited from BayEOS | |
uint8_t | _payload [BayEOS_MAX_PAYLOAD] |
uint8_t | _next |
uint8_t | _success |
uint8_t | _failure_counter |
uint16_t | _max_skip |
uint16_t | _skip_counter |
BayEOSBuffer * | _buffer |
Protected Member Functions inherited from BaySerialInterface | |
uint8_t | readPacket (uint8_t type=API_DATA, int timeout=0) |
void | sendByte (uint8_t b, bool escape) |
uint8_t | readByte (bool escape) |
void | sendAck (uint8_t b) |
Protected Attributes inherited from BaySerialInterface | |
bool | _escape |
bool | _read_timeout |
unsigned long | _start |
uint16_t | _timeout |
uint16_t | _current_timeout |
uint8_t | _length |
uint8_t | _checksumTotal |
uint8_t | _api |
uint8_t | _ack |
uint8_t | _pos |
uint8_t | _break |
uint8_t | _cts_pin =0 |
uint8_t | _retries =0 |
long | _baud |
Arduino BaySoftwareSerial
S.Holzheu (holzh) eu@b aycee r.un i-bay reut h.de
Class for sending BayEOS-Frames over a serial Line
Frames send over serial: [0x7e][length_of_data][API-ID][---------—DATA--------—][CHECKSUM]
START_BYTE,ESCAPE,XON,XOFF in [length,api-id,data,checksum] will get escaped (see below)
BaySoftwareSerial::BaySoftwareSerial | ( | uint8_t | rxPin, |
uint8_t | txPin, | ||
int | timeout = 10000 |
||
) |
Constructor
|
virtual |
Has RX-data to read Has to be overwritten by implementation
Reimplemented from BayEOS.