Search found 3 matches
- Sat Jan 18, 2025 3:16 pm
- Forum: ESP RainMaker
- Topic: Switch or temperature device using on other nodes and their devices
- Replies: 2
- Views: 7498
Switch or temperature device using on other nodes and their devices
Is it possible to use a switch device state or a temperature device value on devices that are on another node and how?
- Tue Nov 26, 2024 9:37 am
- Forum: ESP32 Arduino
- Topic: ESP32-C3 SuperMini connecting to wifi work only when touching antenna
- Replies: 6
- Views: 11537
Re: ESP32-C3 SuperMini connecting to wifi work only when touching antenna
I tested the workaround
Then I saw in
http://esp32.io/viewtopic.php?f=19&t=42069
the pin 21 issue.
I soldered out the single row male pin 21 and removed
again and it connected every time. 
Code: Select all
WiFi.mode(WIFI_STA);
esp_wifi_set_max_tx_power(40);http://esp32.io/viewtopic.php?f=19&t=42069
the pin 21 issue.
I soldered out the single row male pin 21 and removed
Code: Select all
esp_wifi_set_max_tx_power(40);- Thu Nov 14, 2024 2:32 pm
- Forum: ESP32 Arduino
- Topic: LEDCFade not stoppable, workarount to a assign a new fade-target
- Replies: 0
- Views: 1114
LEDCFade not stoppable, workarount to a assign a new fade-target
ARDUINO ESP-Board 2.0.18
I have a callback-routine which is called when the led switches ON or OFF or a new brightness (a slider in the Alexa-App is moved around. The
bool ledcFade(uint8_t pin, uint32_t start_duty, uint32_t target_duty, int max_fade_time_ms);
stucks if it is called again before ...
I have a callback-routine which is called when the led switches ON or OFF or a new brightness (a slider in the Alexa-App is moved around. The
bool ledcFade(uint8_t pin, uint32_t start_duty, uint32_t target_duty, int max_fade_time_ms);
stucks if it is called again before ...