arduino stuff added

This commit is contained in:
2020-10-01 02:06:39 +02:00
committed by Robin.Mueller
parent 436275c61d
commit 4337ab6690
17 changed files with 1192 additions and 244 deletions

View File

@ -0,0 +1,8 @@
#include "ArduinoCookie.h"
ArduinoCookie::ArduinoCookie(Protocol_t protocol, uint8_t address,
const size_t maxReplySize) :
protocol(protocol), command(protocol), address(address),
maxReplySize(maxReplySize), replyBuffer(maxReplySize) {
}