DrRandom
DrRandom
If i comment out `rtc.enableBattery()` it goes to the next line which is ```cpp isRTC_PowerLost = rtc.lostPower(); if ( isRTC_PowerLost ) { Serial.print("[RTC] - Power went down.\n"); rtc.lostPowerClear(); } else...
I2C scanner sees my ds3231 ```cpp [RTC] - Scanning I2C bus... Found address: 104 (0x68) Found 1 device(s). ``` But with 0x68 it does not pass trought this function.
Same problem with etnernet: ```C void ethEvent(WiFiEvent_t event){ if( event == SYSTEM_EVENT_ETH_START ){ ETH.setHostname(hsh_fileSystem.config.hostname); }else if( event == SYSTEM_EVENT_ETH_GOT_IP ){ Serial.printf("\nConnected to Ethernet\n"); Serial.printf("NS - IP:\t%s\n", ETH.localIP().toString().c_str()); Serial.printf("NS - MAC:\t%s\n",...
It was my bad. Iam using arduino esp32 but i used some old version and `the spinlock_acquire` crash was about some other part of my program. The new events working...
So. I updated the package and the the ETH events but my esp do not get a gotip event sometimes. It looks like when i perform a software restart, only...
It would be even better to be able to query the services BEFORE i setup my own hostname on the network. Because to setup my hostname, now i have to...
This is my pio ini file ``` [env:arduino-esp32] platform = https://github.com/platformio/platform-espressif32.git#feature/arduino-upstream board = esp32dev framework = arduino platform_packages = framework-arduinoespressif32 @ https://github.com/espressif/arduino-esp32#master board_build.f_cpu = 240000000L upload_port = COM8 upload_speed =...
I downloaded the new Arduino IDE 2.0.0 and i can only download the 1.0.6 espressif framework.
**I know that but with PIO i'm already using the latest with this ini file:** ``` platform = https://github.com/platformio/platform-espressif32.git#feature/arduino-upstream board = esp32dev framework = arduino platform_packages = framework-arduinoespressif32 @ https://github.com/espressif/arduino-esp32#master...