/arduino-DuinoCoin

Duino-Coin is a coin that can be mined with Arduino and ESP boards.

Primary LanguageCMIT LicenseMIT

arduino-DuinoCoin

Code for Arduino boards v2.4

© Duino-Coin Community 2019-2021

Distributed under MIT License

Library Dependency

The library uses the ArduinoUniqueID library.

Installation

Examples

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.


Reference

Include Library

#include <DuinoCoin.h>
DuinoCoin DuinoCoin(Serial);

Method:begin

void setup() {
  DuinoCoin.begin();
}

Method:loop

void loop() {
  if (DuinoCoin.loop())
  {
      // Work Done
  }
}

Do you like this library? Please star this project on GitHub!