PSLLSP
PSLLSP
Is your NerdMiner connected to active USB port? Then this issue could be a duplicate of #247; your NerdMiner tries to send information to serial port and when no one...
Maybe that minicom resets the ESP32 device with some UART signal line, like DTR or RTS. ESP-WROOM-32 uses external UART chip for serial communication, there are different modules with different...
> Why you say I have the wrong firmware flashed? I see errors in your serial console: ``` [ 138][E][esp32-hal-gpio.c:102] __pinMode(): Invalid pin selected E (132) gpio: gpio_set_level(226): GPIO output...
I am not sure if I understand the question. I assume that you expect that BTC coins are stored at NerdMiner and you want to withdrew them to another address......
It could be a hardware issue. Or your firmware was not flashed. First, try to [flash firmware](https://flasher.bitronics.store/). Just connect your NerdMiner with data USB cable to PC and start Google...
Miner information (version, password) can be seen at this mining pool [dashboard](https://bowserlab.ddns.net:8080/?address=1PKN98VN2z5gwSGZvGKS2bj8aADZBkyhkZ) Configuration of NerdMiner to connect to that pool: ``` { "SSID": "myNerdAP", "WifiPW": "mySECRET", "PoolUrl": "bowserlab.ddns.net", "PoolPort": 3333,...
My try on CURL configuration, bash script runs on Linux. Configuration is read from JSON file, compatible with JSON file for [configuration from SD card](https://github.com/BitMaker-hub/NerdMiner_v2/blob/master/README.md#sd-card-if-available). [`jq`](https://jqlang.github.io/jq/) utility has to be...
Waiting for AP `NerdMinerAP` is a boring task, this is a script for Debian/Ubuntu/Mint that waits for NerdMinerAP and connects to it; after that provisioning script with "CURL" can be...
> Power your NerdMiner with a 5V 2A mobile phone charger - it will run stable. No, that is not source of the issue. 5V/2A, that is only 10W. I...
REST API for timezone, [WorldTime API](https://worldtimeapi.org/pages/examples); easy to use, returns correct time zone offset in minutes `raw_offset` and other useful information. ``` $ curl "https://worldtimeapi.org/api/timezone/Pacific/Kiritimati" {"abbreviation":"+14","client_ip":"234.23.23.234","datetime":"2023-11-22T19:43:04.245664+14:00","day_of_week":3,"day_of_year":326,"dst":false,"dst_from":null,"dst_offset":0,"dst_until":null,"raw_offset":50400,"timezone":"Pacific/Kiritimati","unixtime":1700631784,"utc_datetime":"2023-11-22T05:43:04.245664+00:00","utc_offset":"+14:00","week_number":47} ``` When timezone is...