Skip to content

Latest commit

 

History

History
21 lines (19 loc) · 1.11 KB

README.md

File metadata and controls

21 lines (19 loc) · 1.11 KB

This is a self-contained Duino-coin miner written to work with Raspberry Pi Pico W boards, thus it can mine entirely by itself. It build heavily on the original ESP miner code and still includes unused parts of this. It currently does NOT support OTA and does not have a working WIFI manager Web page to setup new WIFI network. Reprogramming need to be done via USB-cable and updating WIFI details currently needs a chage to code. You need to provide details about your WIFI network, Duino-coin user, number of active cores and maybe a specific identifier (as default "PiPicoW" is used) So in the top of of file "Settings.h" you need to set:

extern char *DUCO_USER = "";
extern char *MINER_KEY = "";
extern char *RIG_IDENTIFIER = "PiPicoW";
extern const char SSID[] = "";
extern const char PASSWORD[] = "";

Building: Make sure you select the board type "Pi Pico W" which includes supports WIFI/BT. The following Libraries must be installed via the Library manager:

  • ArduinoHttpClient by Arduino (v0.6.1+)
  • ArduinoMDNS by Georg Kaindl (v1.0.0+)
  • ArduinoJson by Benoit Blanchon (v7.1.0+)
  • Ticker by Stefan Staub (v4.4.0+)