Search found 14 matches

by fredfit
07 Sep 2021, 18:47
Forum: ESP Easy: General Discussion
Topic: Retrieving the configuration
Replies: 4
Views: 5457

Re: Retrieving the configuration

I finally managed to connect to 192.168.4.1 with my phone and modified the SSID.
All is fine now !
Thanks again, I keep the process if needed for another node.
by fredfit
07 Sep 2021, 17:02
Forum: ESP Easy: General Discussion
Topic: Retrieving the configuration
Replies: 4
Views: 5457

Re: Retrieving the configuration

Thank you Ath and TD-er ! I can see the esp-easy Wifi network with my tablet and can connect to it with "configesp" password. I then can see that my tablet has the IP 192.168.4.2, so it's connected on the same sub-domain. Despite this, the connection is refused on 192.168.4.1... I don't un...
by fredfit
07 Sep 2021, 15:57
Forum: ESP Easy: General Discussion
Topic: Retrieving the configuration
Replies: 4
Views: 5457

Retrieving the configuration

Hi all, One of my Wemos D1 mini board, flashed with ESPeasy firmware,was configured to connect to a Wifi access point that doesn't exist anymore. I didn't have the time to take note of its configuration before the Wifi network was removed. Is there a way to access the configuration by another mean l...
by fredfit
08 Apr 2021, 16:19
Forum: ESP Easy: Hardware
Topic: Timer: convert seconds in minutes
Replies: 20
Views: 11379

Re: Timer: convert seconds in minutes

Thank you Ath. Unfortunately, the code you have given doesn't improve the behaviour. But I finally had some doubts about my board (integrated ESP8266 + OLED). So I tried the exact same configuration and rule with a Wemos D1 mini and an external OLED Display (SSH1106 instead, but this model is suppor...
by fredfit
07 Apr 2021, 16:52
Forum: ESP Easy: Hardware
Topic: Timer: convert seconds in minutes
Replies: 20
Views: 11379

Re: Timer: convert seconds in minutes

I'm still struggling with the oledframedcmd,display,off command. I did a very simple test by just putting this rule in place: on System#Boot do oledframedcmd,display,off endon I was hoping that my board would boot with a blank screen ... but no! Even that simple rule doesn't work, I'm desperate :sho...
by fredfit
06 Apr 2021, 15:32
Forum: ESP Easy: Hardware
Topic: Push button behaviour
Replies: 3
Views: 6115

Re: Push button behaviour

Thank you TD-er, tested successfully.
It looks weird that the behaviour in ESPeasy is the opposite of what are called "switch" or "push button" devices in electronics ... I've probably lost a lot of time because of that :roll:
by fredfit
06 Apr 2021, 14:29
Forum: ESP Easy: Hardware
Topic: Push button behaviour
Replies: 3
Views: 6115

Push button behaviour

Hi all, I'm still struggling with my little project (see topic https://www.letscontrolit.com/forum/viewtopic.php?f=5&t=8450 ) and found out that the "switch" device, when set to "Push Button Active Low" has a strange behaviour, which is most probably the root cause of my issu...
by fredfit
03 Apr 2021, 18:31
Forum: ESP Easy: Hardware
Topic: Timer: convert seconds in minutes
Replies: 20
Views: 11379

Re: Timer: convert seconds in minutes

Thanks Ath! The display does not receive any text or whatever from an external source. It only displays the counter set in the rule and a date/date as alternate header. I tried to disable it, same result. I just display on LIne 2 "{substring:5:10:'%c_s2dhms%([Var#1])'}" "Wake display ...
by fredfit
03 Apr 2021, 16:21
Forum: ESP Easy: Hardware
Topic: Timer: convert seconds in minutes
Replies: 20
Views: 11379

Re: Timer: convert seconds in minutes

Hi, I'm almost there with this code: On Pushbutton#Statepush do If %eventvalue1%=0 TimerSet,1,1 Let,1,3600 oledframedcmd,display,on oledframedcmd,display,med Else TimerSet,1,0 oledframedcmd,display,off Endif Endon On Rules#Timer=1 Do Let,1,[VAR#1]-1 If [VAR#1]=0 //coundown stops at 0 TimerSet,1,0 ol...
by fredfit
01 Apr 2021, 10:53
Forum: ESP Easy: Hardware
Topic: Timer: convert seconds in minutes
Replies: 20
Views: 11379

Re: Timer: convert seconds in minutes

I now have to think of implementing the following scenario: - display normally off - display goes on and countdown starts on pressing the pushbutton - display goes off at the end of the countdown - optional: countdown stops prematurely and display goes off by long press on the pushbutton I will use ...
by fredfit
01 Apr 2021, 09:34
Forum: ESP Easy: Hardware
Topic: Timer: convert seconds in minutes
Replies: 20
Views: 11379

Re: Timer: convert seconds in minutes

Thank you all for your help!
The substring method given by Ath does the job perfectly ;)
I will also consider what TD-er suggested, that would improve my learning on ESPeasy
by fredfit
31 Mar 2021, 17:00
Forum: ESP Easy: Hardware
Topic: Timer: convert seconds in minutes
Replies: 20
Views: 11379

Re: Timer: convert seconds in minutes

TD-er, I did some tests, it's nearly what I was expecting ... but nearly only: Yes, I'm using Framed OLED plugin. By putting %c_s2dhms%([var#1]) in the command to display text on the OLED,I get the following kind of display: 0d00:56:52 for example that I translate by 0 day, 00 hour, min, sec. Consid...
by fredfit
31 Mar 2021, 16:26
Forum: ESP Easy: Hardware
Topic: Timer: convert seconds in minutes
Replies: 20
Views: 11379

Re: Timer: convert seconds in minutes

Thank you very much TD-er for this very detailed and constructive reply!
I will carefully study all this ... after having taken an aspirin ;)
Good to see that the support is so efficient on this board!
by fredfit
31 Mar 2021, 15:19
Forum: ESP Easy: Hardware
Topic: Timer: convert seconds in minutes
Replies: 20
Views: 11379

Timer: convert seconds in minutes

Hi all, thank you for welcoming me on this board ! I have a little project based on an ESP8266 and an OLED display. They are both integrated in the same PCB: https://www.banggood.com/fr/Nodemcu-Wifi-And-NodeMCU-ESP8266-0_96-Inch-OLED-Module-Development-Board-p-1154759.html I'm learning how to use ES...