28 static const long LED_BLINK_PERIOD = 200;
30 if ((
millis() % LED_BLINK_PERIOD) > (LED_BLINK_PERIOD / 2))
99 size_t toRead = length;
100 uint8_t* pos = buffer;
104 size_t val =
_knxSerial->readBytes(pos, toRead);
122 SPI.beginTransaction(SPISettings(4000000, MSBFIRST, SPI_MODE0));
127 SPI.endTransaction();
133 SPI.transfer(data, len);
141 char buf[8 *
sizeof(uint64_t) + 1];
142 char* str = &buf[
sizeof(buf) - 1];
152 *--str = c < 10 ? c +
'0' : c +
'A' - 10;
172 void print(
unsigned char num,
int base)
192 void print(
unsigned int num,
int base)
212 void print(
unsigned long num,
int base)
222 void print(
unsigned long long num,
int base)
298 void println(
unsigned long long num,
int base)