Search found 101 matches

by Gilles
26 Mar 2019, 17:39
Forum: ESP Easy: Software
Topic: normal or normal_core_241 or normal_core_242
Replies: 5
Views: 4904

Re: normal or normal_core_241 or normal_core_242

Thanks for the answer. I understand the difference between "stable" , "stable + test" and "stable + test + development". What I don't know is which bin file I can use for the sonoff(1M). core.JPG There are 3 versions for the 1M:normal, normal core 241 and normal core 24...
by Gilles
26 Mar 2019, 11:57
Forum: ESP Easy: Software
Topic: normal or normal_core_241 or normal_core_242
Replies: 5
Views: 4904

Re: normal or normal_core_241 or normal_core_242

Is ther anyone who can can help to point me to a link for an explanation about normal or normal_core_241 or normal_core_242 ?
by Gilles
19 Mar 2019, 08:09
Forum: ESP Easy: Software
Topic: normal or normal_core_241 or normal_core_242
Replies: 5
Views: 4904

normal or normal_core_241 or normal_core_242

I have a sonof basic(1M). Could you tell me where I can get the info about these 3 espeasy versions (see title) ? The README.txt which come with the ESP_Easy_mega-20190305 doesn't explain anything about the core versions compared to the "normal" version: The package includes: - ESP_Easy_me...
by Gilles
17 Mar 2019, 08:09
Forum: ESP Easy: Software
Topic: SONOFF BASIC: wifi issue with ESPEasy_mega-20190305
Replies: 4
Views: 3376

Re: SONOFF BASIC: wifi issue with ESPEasy_mega-20190305

I have never been able to http the sonoff once upgraded to MEGA-20190305. If I have some time, I will give it a second try. BTW, I had used the bin file : ESP_Easy_mega-20190305_normal_ESP8266_1M.bin Would you recommend me to use : ESP_Easy_mega-20190305_normal_core_242_ESP8266_1M.bin or ESP_Easy_me...
by Gilles
15 Mar 2019, 07:52
Forum: ESP Easy: Software
Topic: SONOFF BASIC: wifi issue with ESPEasy_mega-20190305
Replies: 4
Views: 3376

Re: SONOFF BASIC: wifi issue with ESPEasy_mega-20190305

I have too many disconnections issues with ESPEasy_mega-20190225. But it looks like the pings awake it. When I run a continous ping, I don't see any disconnection. Is there a feature which make it sleep when there is no activity ? ( I have not set any rule, device or whatever, not even ntp). It has ...
by Gilles
12 Mar 2019, 07:35
Forum: ESP Easy: Software
Topic: SONOFF BASIC: wifi issue with ESPEasy_mega-20190305
Replies: 4
Views: 3376

SONOFF BASIC: wifi issue with ESPEasy_mega-20190305

FYI : The wifi was a little bit unstable with ESPEasy_mega-20190225.( 2 meters away from the wifi router) I had decided to upgrade the Sonoff Basic from ESPEasy_mega-20190225 to ESPEasy_mega-20190305 to have the new wifi feature cpu eco mode. After that, I only got one answer every 7 pings, so I was...
by Gilles
09 Mar 2019, 08:44
Forum: ESP Easy: Software
Topic: Get the timer value
Replies: 35
Views: 19896

Re: Get the timer value

I have upgraded the sonoff esp to: ESPEasy_mega-20190225
Everything works as it has to.
I can get the dummy variable
dummy_device.PNG
dummy_device.PNG (26.38 KiB) Viewed 19659 times
and your java script is fantastic:)
dummy_device2.PNG
dummy_device2.PNG (5.64 KiB) Viewed 19659 times
NB: the json display shows a lot of detailed info with this espeasy version.

Thanks a lot
Gilles
by Gilles
08 Mar 2019, 16:36
Forum: ESP Easy: Software
Topic: Get the timer value
Replies: 35
Views: 19896

Re: Get the timer value

you are right, In my case, it is the second sensor and the second value so it should be jsonData.Sensors[1].TaskValues[1].Value + ' sec'; I have even tried several combinations. Maybe there is something wrong with the espeay version that I run. Don't worry, I will write a python script to get the js...
by Gilles
08 Mar 2019, 15:43
Forum: ESP Easy: Software
Topic: Get the timer value
Replies: 35
Views: 19896

Re: Get the timer value

It doesn't work for me with Chrome.
The inspect console shows some errors
dummy_device3.PNG
dummy_device3.PNG (86.38 KiB) Viewed 19711 times
Really sorry,
Gilles
by Gilles
08 Mar 2019, 15:22
Forum: ESP Easy: Software
Topic: Get the timer value
Replies: 35
Views: 19896

Re: Get the timer value

I had tested it , but i only get a blue background. I have edited the example.html file changed the blue lines. <script> let ip = '192.168.1.6'; setInterval(function() { let ud = 'id_' + +new Date; let url = 'http://' + ip + '/json?callback=' + ud; fetch(url) .then(res => res.json()) .then((jsonData...
by Gilles
08 Mar 2019, 14:51
Forum: ESP Easy: Software
Topic: Get the timer value
Replies: 35
Views: 19896

Re: Get the timer value

I was thinking to something(url) that I could type in a browser on my smartphone or laptop. I already have a shortcut to trigger the rule (http://192.168.1.6/control?cmd=event,toto).
Another browser shortcut to have the timer value displayed should be great :)
by Gilles
08 Mar 2019, 14:27
Forum: ESP Easy: Software
Topic: Get the timer value
Replies: 35
Views: 19896

Re: Get the timer value

BTW,
what would be the http command to get the value of tv2 (second value of the second device)
Is it : http://192.168.1.6/json
or is there a query which return directly the value of tv2
ex something like : http://192.168.1.6/control?cmd=status,countdown,2,2

Thanks
by Gilles
08 Mar 2019, 13:59
Forum: ESP Easy: Software
Topic: Get the timer value
Replies: 35
Views: 19896

Re: Get the timer value

I may need to upgrade to a more recent version.
I may do it this weekend. I will add a post when done.
Thanks for your help and time.
Much appreciated
Gilles
by Gilles
08 Mar 2019, 13:49
Forum: ESP Easy: Software
Topic: Get the timer value
Replies: 35
Views: 19896

Re: Get the timer value

I have just added a line in the rule to assign the value 300 to the variable number 2 (tv2) and I can see it in the device section. On toto Do If [Relai#Status]=0 gpio,12,1 TimerSet,1,7200 TimerSet,8,1 Let,1,7200 TaskValueSet,2,1,[VAR#1] TaskValueSet,2,2,300 Else gpio,12,0 TimerSet,1,0 TimerSet,8,0 ...
by Gilles
08 Mar 2019, 13:43
Forum: ESP Easy: Software
Topic: Get the timer value
Replies: 35
Views: 19896

Re: Get the timer value

it doesn't work either. I have renamed the status and rewritten the rule to make it simpler. On toto Do If [Relai#Status]=0 gpio,12,1 TimerSet,1,7200 TimerSet,8,1 Let,1,7200 TaskValueSet,2,1,[VAR#1] Else gpio,12,0 TimerSet,1,0 TimerSet,8,0 Let,1,0 TaskValueSet,2,1,[VAR#1] EndIf EndOn On Rules#Timer=...
by Gilles
08 Mar 2019, 10:24
Forum: ESP Easy: Software
Topic: Get the timer value
Replies: 35
Views: 19896

Re: Get the timer value

Sorry but It doesn't work yet. the dummy device value remains 0.The four value names are : dummy, tv2, tv3, tv4) Any idea ? here is the rule: ( I trigger it with : http://192.168.1.6/control?cmd=event,toto ) on toto do if [Relai#Relai]=1 gpio,12,0 else gpio,12,1 endif endon //http://192.168.1.6/cont...
by Gilles
07 Mar 2019, 17:29
Forum: ESP Easy: Software
Topic: Get the timer value
Replies: 35
Views: 19896

Re: Get the timer value

got it : relai(french) and relay(English)
The eye of the tiger :)
by Gilles
07 Mar 2019, 17:05
Forum: ESP Easy: Software
Topic: Get the timer value
Replies: 35
Views: 19896

Re: Get the timer value

wow, I am really impressed with what you can do with espeasy. Thanks for your great explanation. Unfortunately, it doesn't work for me. the dummy device values remain empty. Here is the device section: dummy_device.PNG here is the rule section (with relay#relay ,not yet changed): on toto do if [Rela...
by Gilles
07 Mar 2019, 12:07
Forum: ESP Easy: Software
Topic: Get the timer value
Replies: 35
Views: 19896

Re: Get the timer value

Thanks for the detailled info. What I want : I use a sonoff with espeasy to switch on a light in the garden with a timer = 2 hours . I trigger this with a rule. And 2 hours later, when the timer equals 0 , I switch off the light with another rule. This works fine. Now, I just would like to know if i...
by Gilles
07 Mar 2019, 07:27
Forum: ESP Easy: Software
Topic: Get the timer value
Replies: 35
Views: 19896

Re: Get the timer value

Thanks Patou, I have also find a command reference which talks about the "let" statement : https://espeasy.readthedocs.io/en/latest/Reference/Command.html I have spent some time yesterday based on grovkillen's solution to try to make it work, but not yet succeeded. I don't understand how I...
by Gilles
05 Mar 2019, 09:14
Forum: ESP Easy: Software
Topic: Get the timer value
Replies: 35
Views: 19896

Re: Get the timer value

Thanks,
I will give it a try.

Is the "Let" command explained somewhere? I went through the wiki and have not found it.
Thanks
Gilles
by Gilles
04 Mar 2019, 15:05
Forum: ESP Easy: Software
Topic: Get the timer value
Replies: 35
Views: 19896

Get the timer value

I am using a sonoff/espeasy to power on a a lamp during 2 hours via a rule and a timer : On Relai#Relai do if [Relai#Relai]=1 timerSet,1,7200 //timer 1 set for 2 heures else timerSet,1,0 endif endon Is there a way to get the value of the timer to know how much time is left in the same way as I can g...
by Gilles
01 Sep 2018, 08:18
Forum: ESP Easy: Hardware
Topic: Paper-mail with email project
Replies: 17
Views: 10544

Re: Paper-mail with email project

the png has disappeared. Here is what I have:
Config.PNG
Config.PNG (5.45 KiB) Viewed 9713 times
by Gilles
01 Sep 2018, 08:16
Forum: ESP Easy: Hardware
Topic: Paper-mail with email project
Replies: 17
Views: 10544

Re: Paper-mail with email project

wow. I have found this in the forum: awake.PNG but I only have this: I need to check why. Config.PNG I will be driving all the day (while some other will be hunting :). I will check tomorrow what went wrong, but I wil not be at home so I will not be able to test. I may have a version issue. I run v2...
by Gilles
31 Aug 2018, 20:12
Forum: ESP Easy: Hardware
Topic: Paper-mail with email project
Replies: 17
Views: 10544

Re: Paper-mail with email project

The easyNotification "guide" (https://www.letscontrolit.com/wiki/index.php/EasyNotifications) says: Enable deep sleep with a sleep time of 0 seconds. (this way it only wakes up manually by the switch) Enable Sleep on connection failure Set message delay to 0. What settings are you talking ...
by Gilles
31 Aug 2018, 19:27
Forum: ESP Easy: Hardware
Topic: Paper-mail with email project
Replies: 17
Views: 10544

Re: Paper-mail with email project

I apologize for my bad english. Let me rephrase. Let's say the ESP is in deep sleep. It will be awaken when the switch will detect that the door is open even for one second. How much time the ESP will stay up before going again to the deep sleep? Is there a way to configure the time that the ESP wil...
by Gilles
31 Aug 2018, 15:27
Forum: ESP Easy: Hardware
Topic: Paper-mail with email project
Replies: 17
Views: 10544

Re: Paper-mail with email project

yes, you are right.
I think so, but how/where to configure the time the esp will be up, these 10 or 15 seconds that I need for the ESP to boot, connect to the network and send the email?
by Gilles
31 Aug 2018, 15:10
Forum: ESP Easy: Hardware
Topic: Paper-mail with email project
Replies: 17
Views: 10544

Re: Paper-mail with email project

I am working on the same project with my mailbox. My question is: As the open/close lasts around one second, how much time the esp07S will be powered ? I know that I can configure a static ip to save time, but it still needs some time anyway to connect to the ssid and to send a mail. I have applied ...
by Gilles
10 Feb 2018, 19:00
Forum: ESP Easy: Software
Topic: only first email notification is sent
Replies: 12
Views: 9298

Re: only first email notification is sent

@ Kayombo
I have attached 2 JPG:
- Rule
- Notification
notification.JPG
notification.JPG (60.04 KiB) Viewed 8067 times
The attachment notification.JPG is no longer available
Sorry it is a french mail server.
IMPORTANT : The Domain and the smtp Server are those used by my Internet provider (internet box at home), not those from my email addresses(laposte.net)

Gilles
by Gilles
08 Feb 2018, 17:40
Forum: ESP Easy: Software
Topic: Is there a version for an ESP07 with 512K flash?
Replies: 1
Views: 1809

Is there a version for an ESP07 with 512K flash?

By mystake, I have ordered and received 5 x ESP-07 (not ESP-07S). IMG_20180120_1411452.jpg As they have 512KB flash, I cannot use the recent Espeasy versions. Is there an old espeasy version supported by these ESP07 devices that I could play with or any other solution or do I have to put them to the...
by Gilles
07 Feb 2018, 08:25
Forum: ESP Easy: Projects / Applications
Topic: Post mailbox to email notifier.
Replies: 18
Views: 15188

Re: Post mailbox to email notifier.

Thanks for the info. My bad. I have missed the extra "S" in your recommandation of using a ESP-07 instead of a ESP-12. I also will have a look at your project to check the wiring. I have just ordered 5 ESP07-S to a chinese site. btw, would you know an european site where to order parts and...
by Gilles
06 Feb 2018, 11:44
Forum: ESP Easy: Projects / Applications
Topic: Post mailbox to email notifier.
Replies: 18
Views: 15188

Re: Post mailbox to email notifier.

Hi Shardan & Psy0rz, I have just read a recent post titled : "Need help flashing ESP-07" in the hardware section. It says that I cannot use the ESPEASY software with the ESP07 because it has only 512K memory, and that I should buy the ESP07-S instead. Is that true? I have followed the ...
by Gilles
06 Feb 2018, 11:20
Forum: ESP Easy: Projects / Applications
Topic: Post mailbox to email notifier.
Replies: 18
Views: 15188

Re: Post mailbox to email notifier.

Hello,
Any comment or error in my diagram ?

Do you think/confirm that the cabling is the right one? I am not a specialist so any advice is good to me.

I have ordered 3 more ESP07. They may be helpful if I am wrong.

Gilles
by Gilles
30 Jan 2018, 14:06
Forum: ESP Easy: Software
Topic: would need to add date and some variables in the email notification
Replies: 10
Views: 7333

Re: would need to add date and some variables in the email notification

I don't use gmail, but I think that you should configure your internet provider smtp server and domain instead of the gmail ones. There are a lot of posts about this.
Gilles
by Gilles
29 Jan 2018, 15:36
Forum: ESP Easy: Projects / Applications
Topic: Post mailbox to email notifier.
Replies: 18
Views: 15188

Re: Post mailbox to email notifier.

I would like to submit you the results of my searchs. Could you have a look at the attached Word diagram and comment it? It is the sum of what I have collected after reading a lot of things. Please tell me if I am right or if something is missing or is incorrect. I understand that I will need someth...
by Gilles
27 Jan 2018, 19:06
Forum: ESP Easy: Software
Topic: would need to add date and some variables in the email notification
Replies: 10
Views: 7333

Re: would need to add date and some variables in the email notification

nothing to add. Just to allow me to tick the "Notify me when a reply is posted" :)
by Gilles
27 Jan 2018, 19:05
Forum: ESP Easy: Software
Topic: would need to add date and some variables in the email notification
Replies: 10
Views: 7333

Re: would need to add date and some variables in the email notification

It works, congrat Here is the configuration that I use : THE RULE SECTION: On AL do gpio,12,1 notify 1 EndOn THE NOTIFY SECTION: Subject: %sysname% a été activée %sysday% %sysmonth% %sysyear% %systime% Body : La prise 2 a été activée The subject of the mail that I receive is :"Prise2 - Bureau a...
by Gilles
26 Jan 2018, 11:13
Forum: ESP Easy: Software
Topic: would need to add date and some variables in the email notification
Replies: 10
Views: 7333

would need to add date and some variables in the email notification

I run a SONOFF S20 with the normal 1MB v2.0-20180120. I use 3 different rules (boot, switched on , switched off) with 3 different "notify email" statements. 1) %sysmonth%, %sysyear% and %sysday% don't work. I have read the forum but I don't understand if I would need to compile the sources...
by Gilles
25 Jan 2018, 09:10
Forum: ESP Easy: Software
Topic: only first email notification is sent
Replies: 12
Views: 9298

Re: only first email notification is sent (solved)

Since the upgrade, the emails are now sent accordingly to the rules.
thanks
Gilles
by Gilles
24 Jan 2018, 18:27
Forum: ESP Easy: Software
Topic: only first email notification is sent
Replies: 12
Views: 9298

Re: only first email notification is sent

I have downloaded the espressif tool as advised in another ticket by alfons and I have successfully uploaded the new version: Build: 20000 - Mega GIT version: v2.0-20180120 ticket ref : http://www.letscontrolit.com/forum/viewtopic.php?f=5&t=3386&start=10 I have not yet validated the email th...
by Gilles
24 Jan 2018, 18:05
Forum: ESP Easy: Software
Topic: only first email notification is sent
Replies: 12
Views: 9298

Re: only first email notification is sent

The sonoff S20 includes a PSA B01 G1 which is based on an ESP 8266.
https://www.itead.cc/psa-01.html
PSA-01: ESP8266 based 1 Channel Smart Switch Module for Home Automation Devices
I don't know if it can help.
Gilles
by Gilles
24 Jan 2018, 10:00
Forum: ESP Easy: Software
Topic: only first email notification is sent
Replies: 12
Views: 9298

Re: only first email notification is sent

Thanks, I have alreay tried "FlashESP8266.exe" with the normal 1MB version : ESP_Easy_v2.0-20180120_normal_ESP8266_1024.bin from : https://github.com/letscontrolit/ESPEasy/releases. The sonoff s20 is flashed ( with a FT232RL FTDI USB To TTL Serial Converter Adapter Module) without issue, b...
by Gilles
23 Jan 2018, 20:10
Forum: ESP Easy: Software
Topic: only first email notification is sent
Replies: 12
Views: 9298

Re: only first email notification is sent

I have just found that the bug is a known issue : https://github.com/letscontrolit/ESPEasy/issues/502
but I don't understand which version/release I can use instead of : 2_4_0_RC1
by Gilles
23 Jan 2018, 15:30
Forum: ESP Easy: Software
Topic: only first email notification is sent
Replies: 12
Views: 9298

only first email notification is sent

I have a sonoff S20 flashed with espeasy ( Core Version: 2_4_0_RC1 arduino ide ). I want to receive a mil when the sonoff is switched on or off with the commands: http://192.168.1.25/control?cmd=event,AL and http://192.168.1.25/control?cmd=event,ET I have created 2 simple rules that I trigger using ...
by Gilles
16 Jan 2018, 14:58
Forum: ESP Easy: Projects / Applications
Topic: Post mailbox to email notifier.
Replies: 18
Views: 15188

Re: Post mailbox to email notifier.

I will definitely go through it. I already have flashed a few numbers of SONOFF (standard or S20) with EspEasy , that has lead me to learn more on the esp(easy) . When looking at the ESPeasy notifications section, I found the "Creating a paper-mail to email Gateway" tuto (at : https://www....
by Gilles
16 Jan 2018, 11:46
Forum: ESP Easy: Projects / Applications
Topic: Post mailbox to email notifier.
Replies: 18
Views: 15188

Re: Post mailbox to email notifier.

hahaha,
so nobody has made the "mailbox to email notifier" work (at least with a bare esp) ...

I will try to make it work and if so, I will post the info. I don't have the hardware parts yet. Still waiting.
Thanks jjansen for the booting info.
Gilles
by Gilles
16 Jan 2018, 08:02
Forum: ESP Easy: Projects / Applications
Topic: Post mailbox to email notifier.
Replies: 18
Views: 15188

Re: Post mailbox to email notifier.

hahaha,
so nobody has made the "mailbox to email notifier" work (at least with a bare esp) ...

I will try to make it work and if so, I will post the info. I don't have the hardware parts yet. Still waiting.
Thanks jjansen for the booting info.
by Gilles
14 Jan 2018, 10:12
Forum: ESP Easy: Projects / Applications
Topic: Post mailbox to email notifier.
Replies: 18
Views: 15188

Re: Post mailbox to email notifier.

Hello,
no answer?
You know, I don't want to burst my first esp07.
Regards,
Gilles
by Gilles
01 Jan 2018, 17:19
Forum: ESP Easy: Projects / Applications
Topic: Post mailbox to email notifier.
Replies: 18
Views: 15188

Re: Post mailbox to email notifier.

Hi Psi0rz, In the "Post mailbox to email notifier" guide, one of your sentences makes me feel uncomfortable:) "You need to connect some extra pins to VCC or GND if you use a bare ESP-12-f, google for this. :)" I went through the espeasy doc and I have understood the below: - to m...
by Gilles
30 Dec 2017, 07:37
Forum: ESP Easy: Projects / Applications
Topic: Post mailbox to email notifier.
Replies: 18
Views: 15188

Re: Post mailbox to email notifier.

Thanks Psy0rz and Shardan,
I have ordered the hardware parts in China because there is no more shops in Paris.
The next step will be to do the right wiring.
Happy New Year
Gilles