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

LED on ATtiny85 #57

Closed Daviedz closed 3 years ago

Daviedz commented 3 years ago

Does LED on Attiny85 off by default? I use Attiny as slave and only power LED is on but the other LED is not blinking when mining. How to turn it on?

fopinski commented 3 years ago

https://github.com/ricaun/DuinoCoinI2C/blob/main/README.md

LED

This enable the led output and makes de led flash when the slave is working.

#define LED LED_BUILTIN

It depends on your board which Pin is used for the LED.

Daviedz commented 3 years ago

https://github.com/ricaun/DuinoCoinI2C/blob/main/README.md

LED

This enable the led output and makes de led flash when the slave is working.

#define LED LED_BUILTIN

It depends on your board which Pin is used for the LED.

Thanks, able to enable it..