Search found 7 matches

by DonJuanito
23 Oct 2016, 18:14
Forum: ESP Easy: Software
Topic: Nextion display plugin
Replies: 587
Views: 2127526

Re: Nextion display plugin

Hi. Have a look at this tread: http://www.esp8266.nu/forum/viewtopic.php?f=6&t=2125&p=9941&hilit=ser2net#p9941 . The idea with a Nextion display should be to have a device which can be read from or written to. These read/write would have to be translated to the ESP serial port which is c...
by DonJuanito
15 Oct 2016, 15:44
Forum: ESP Easy: Software
Topic: ESP Easy next stable... (release candidates)
Replies: 155
Views: 121422

Re: ESP Easy next stable... (release candidate 1)

I just found that the "Flashdump" console command seems KO (No dumping, just the stats appear) on R137:

Code: Select all

>Flashdump
Sketch size        : 430848
Sketch free space  : 614400
Flash size         : 4194304
SPIFFS start sector: 256
SPIFFS end sector  : 1019
Offset: 0 : u9x	

Ok
by DonJuanito
14 Oct 2016, 21:07
Forum: ESP Easy: Software
Topic: ESP Easy next stable... (release candidates)
Replies: 155
Views: 121422

Re: ESP Easy next stable... (release candidate 1)

I am using OpenHab MQTT, is that one okay ? As far as you can control what information is encoded in the Publish messages outgoing from OpenHab, you'll be able to find a way to make it work (see this post: http://www.esp8266.nu/forum/viewtopic.php?f=6&t=1993#p9298 ). With Domoticz, it is possib...
by DonJuanito
13 Oct 2016, 21:47
Forum: ESP Easy: Software
Topic: ESP Easy next stable... (release candidates)
Replies: 155
Views: 121422

Re: ESP Easy next stable... (release candidate 1)

Everything I tested seems OK in R137, apart from the "Output - (Domoticz Helper)" which seems unstable as sending some MQTT commands to a task reboots the device (SonOFF). For now, I use HTTP commands to control the ESP Easy devices (from Domoticz V34834 on a Raspberry 2). This reboots the...
by DonJuanito
18 Mar 2016, 18:58
Forum: ESP Easy: Software
Topic: How should bugs be reported?
Replies: 8
Views: 5919

Re: How should bugs be reported?

Hi. Sorry to hijack this thread, but the title was exactly what I was asking myself, and I hate forums where the same question is asked over and over in different threads... I found what I think is a small bug int the _P005_DHT.ino sketch. As some other users, I was unable to maintain a constant flo...
by DonJuanito
16 Mar 2016, 20:10
Forum: ESP Easy: Software
Topic: newbee question
Replies: 21
Views: 16314

Re: newbee question

I had the same 'nan' issues with my Wemos D1 mini boards and all my DHT11 sensors. The fix is easy: You have to change a value in the _P005_DHT.ino sketch. Change from "delayMicroseconds(40)" to "delayMicroseconds(20);" : pinMode(Plugin_005_DHT_Pin, OUTPUT); // DHT start conditio...
by DonJuanito
16 Mar 2016, 20:07
Forum: ESP Easy: Hardware
Topic: DHT22 Problem
Replies: 25
Views: 32250

Re: DHT22 Problem

Hi. If your DHT11/22 reads most of the time 'nan', you have to change a value in the source code of _P005_DHT.ino, around line 98. Change from "delayMicroseconds(40)" to "delayMicroseconds(20);" : pinMode(Plugin_005_DHT_Pin, OUTPUT); // DHT start condition, pull-down i/o pin for ...