Skip to content

Latest commit

 

History

History
61 lines (39 loc) · 1.23 KB

README.md

File metadata and controls

61 lines (39 loc) · 1.23 KB

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!