Code for Arduino boards v2.4
© Duino-Coin Community 2019-2021
Distributed under MIT License
The library uses the ArduinoUniqueID
library.
- Install the library by Using the Library Manager
- OR by Importing the .zip library using either the master or one of the releases ZIP files.
The library comes with examples. After installing the library you need to restart the Arduino IDE before they can be found under File > Examples > arduino-DuinoCoin.
#include <DuinoCoin.h>
DuinoCoin DuinoCoin(Serial);
void setup() {
DuinoCoin.begin();
}
void loop() {
if (DuinoCoin.loop())
{
// Work Done
}
}
Do you like this library? Please star this project on GitHub!