Search found 8 matches

by midrag
13 Nov 2021, 08:26
Forum: ESP Easy: General Discussion
Topic: ESP32-S2: can't finde "Generic - Dummy Device"
Replies: 8
Views: 6325

Re: ESP32-S2: can't finde "Generic - Dummy Device"

I've created a local Custom build, including the Dummy device, and also the Neopixel (P028), as the ESP32-S2 Saola board has one on board (you didn't mention what board you have, but this one usually has a great price) ESP_Easy_mega_20211111_custom_ESP32s2_4M316k.zip Many thanks! i'll use the ESP32...
by midrag
11 Nov 2021, 09:48
Forum: ESP Easy: General Discussion
Topic: ESP32-S2: can't finde "Generic - Dummy Device"
Replies: 8
Views: 6325

ESP32-S2: can't finde "Generic - Dummy Device"

Hi, i can't find the dummy device in the actual ESP32S2 build. Am i doing something wrong?
best regards
midrag
ESP32S2.jpg
ESP32S2.jpg (103.69 KiB) Viewed 6325 times
by midrag
02 Jun 2020, 16:27
Forum: ESP Easy: Software
Topic: command LongPulse: possible to pulse between state 0 and state 2?
Replies: 10
Views: 8961

Re: command LongPulse: possible to pulse between state 0 and state 2?

on LongpulseGPIO do // usage: event,LongpulseGPIO,<gpio>,<seconds> if %eventvalue1% > 0 and %eventvalue2% > 0 let,%eventvalue1%,%eventvalue2% gpio,%eventvalue1%,0 // Turn relay on endif endon on Rules#Timer=1 do if %v1% > 0 let,1,%v1%-1 // Decrement counter if %v1% = 0 // Time to turn it off? gpio,...
by midrag
02 Jun 2020, 16:26
Forum: ESP Easy: Software
Topic: command LongPulse: possible to pulse between state 0 and state 2?
Replies: 10
Views: 8961

Re: command LongPulse: possible to pulse between state 0 and state 2?

Do you have a ESP8266 board available to check if that is able to 'longpulse' the relay? I'm a bit puzzled that your ESP32 isn't able to perform such basic functionality, so I suspect there is some incompatibility with that reley board. It could be related to the 5V supplied to the optocouplers, an...
by midrag
16 May 2020, 17:59
Forum: ESP Easy: Software
Topic: command LongPulse: possible to pulse between state 0 and state 2?
Replies: 10
Views: 8961

Re: command LongPulse: possible to pulse between state 0 and state 2?

I've made a little workaround using the rules function. On LongPulseGPIO12 do gpio,12,0 //turn relay on GPIO12 on timerSet,1,%eventvalue% //timer 1 set for eventvalue endon On Rules#Timer=1 do gpio,12,2 //turn relay on GPIO12 off endOn it works (http://<espeasyip>/control?cmd=event,LongPulseGPIO12=6...
by midrag
16 May 2020, 17:32
Forum: ESP Easy: Software
Topic: command LongPulse: possible to pulse between state 0 and state 2?
Replies: 10
Views: 8961

Re: command LongPulse: possible to pulse between state 0 and state 2?

yes, i've tried 10kOhm and 83kOhm. It didn't help. I'm using an ESP32 devkitc_v4 and this relay-card: https://cdn.shopify.com/s/files/1/1509/1638/files/16-Relais_Modul_Datenblatt_bcf64d09-216f-44ef-a75f-0c2890cf7452.pdf?53659 Link to ESP32 devkit: https://docs.espressif.com/projects/esp-idf/en/lates...
by midrag
16 May 2020, 09:24
Forum: ESP Easy: Software
Topic: command LongPulse: possible to pulse between state 0 and state 2?
Replies: 10
Views: 8961

command LongPulse: possible to pulse between state 0 and state 2?

hey, i am trying to use a 16-relay board with Easyesp Version mega-20200426. I can turn on the relay by using the gpio command (http://<espeasyip>/control?cmd=GPIO,12,0). the specific relay card won't turn off with setting the GPIO to high (http://<espeasyip>/control?cmd=GPIO,12,1) but with setting ...