brettwatty / arduino-nano-4x-charger-discharger

17 stars 8 forks source link

CDUnitID byte needs to be increased #1

Closed alexelite closed 4 years ago

alexelite commented 4 years ago

Hello,

At the moment the CDUnitID in ESP firmware is set to char, but the number of charger units has increased over 255 so byte type is not good anymore.

const byte CDUnitID = 0; => const int CDUnitID = 0;

Also, thank you for sharing this project. Alex