🎨 Misc. code cleanup

This commit is contained in:
Scott Lahteine
2021-11-07 01:11:51 -06:00
committed by Scott Lahteine
parent 0273a68587
commit 6f9f25dbb2
4 changed files with 15 additions and 14 deletions

View File

@ -98,7 +98,7 @@ void TWIBus::echodata(uint8_t bytes, FSTR_P const pref, uint8_t adr, const uint8
union TwoBytesToInt16 { uint8_t bytes[2]; int16_t integervalue; };
TwoBytesToInt16 ConversionUnion;
echoprefix(bytes, pref, adr);
echoprefix(bytes, pref, adr);
while (bytes-- && Wire.available()) {
int value = Wire.read();