ricaun / DuinoCoinI2C

This project design to mine Duino-Coin using an Esp8266 as a master and Arduino as a slave.
MIT License
168 stars 72 forks source link

Max slave number #51

Closed CN-Antonio closed 3 years ago

CN-Antonio commented 3 years ago

I'm making an AIO board including ESP8266 as master and Atmega328p as slave. I wonder the max number of slave is 10 in README or can be higher? If it's more than 10, it would be better. :)

ricaun commented 3 years ago

You could change the define.

#define CLIENTS 10

And set to another number, but I don't know if the ESP8266 can handle too many devices at the same time.

CN-Antonio commented 3 years ago

Got it, I'll try. Thanks :)