Search found 221 matches

by iron
07 Jan 2017, 17:13
Forum: ESP Easy: General Discussion
Topic: Simple switch issues
Replies: 4
Views: 3678

Re: Simple switch issues

Here is your answer :

viewtopic.php?f=6&t=2039&start=10
by iron
10 Dec 2016, 18:45
Forum: ESP Easy: Software
Topic: Door opener with pn532
Replies: 5
Views: 5187

Re: Door opener with pn532

Negan1969 wrote:thank you Iron, it works:

On PN532#Tag do

if [PN532#Tag]=123456
gpio,16,1
delay 2800
gpio,16,0

if [PN532#Tag]=1234567
gpio,16,1
delay 2800
gpio,16,1
endif
endon
Your second condition triggers the same pin pin / status twice ?
by iron
10 Dec 2016, 18:44
Forum: Experimental
Topic: Nano Easy
Replies: 9
Views: 21812

Re: Nano Easy

Sweet Martinus !!! HVAC devices mainly housed in steel enclosures raise WiFi connectivity issues so I put together an Ethernet based ESP PCB with passive PoE support that fulfills many cases meanwhile eliminating the need for powering the device locally (powered directly from PoE switch). All that i...
by iron
09 Dec 2016, 21:58
Forum: Experimental
Topic: ESP Easy Mega
Replies: 249
Views: 750793

Re: ESP Easy Mega

My DTS238-7 power meter does 400 pulses per Kw and Pulse Counter reads them out properly.
For some reason %value%/400 in the "Formula Total:" field does not seem to work ?
by iron
09 Dec 2016, 20:48
Forum: ESP Easy: Software
Topic: Door opener with pn532
Replies: 5
Views: 5187

Re: Door opener with pn532

Hello guys, i'am trying to connect the ESP Easy with one pn532 tag reader to my existing door intercom. On my D1 mini Mini NodeMcu 4M i got Firmware 147, i can see the pn532 device over i2c (D1 and D2).Now I want to set the rules for 2 valid tags and control one relais on gpio16 for 5 sec to the do...
by iron
07 Dec 2016, 20:22
Forum: ESP Easy: Hardware
Topic: Antenna-connector cable for WEMOS D1-Pro
Replies: 6
Views: 5688

Re: Antenna-connector cable for WEMOS D1-Pro

The D1-Pro from WEMOS has a connector for an external antenna. Very useful, but (in hindsight) I 'overestimated' the dimensions of that (micro)connector. Regardless whether I can find a compatible connector, it is most probable that soldering of such connector is beyond my skill-level. Looked aroun...
by iron
02 Dec 2016, 08:22
Forum: ESP Easy: Hardware
Topic: New relay boards on Aliexpresse :)
Replies: 15
Views: 14381

Re: New relay boards on Aliexpresse :)

pacitzu wrote:Yes. I select "boot from flash" jumper like the picture attached
After boot the esp8266 led blinking and D2 and D3 LED will stay on.
Also i hear a click from a relay
Keep the serial connected while booting, see what the debugging/console messages say.
by iron
01 Dec 2016, 22:17
Forum: ESP Easy: Hardware
Topic: New relay boards on Aliexpresse :)
Replies: 15
Views: 14381

Re: New relay boards on Aliexpresse :)

I just get LinkNode R4 http://linksprite.com/wiki/index.php5?title=LinkNode_R4:_Arduino-compatible_WiFi_relay_controller I uploaded the firmware ESPEasy_R120_512.bin with esptool.exe and an FTDI programmer. The procedure ends successfully, but after boot Esp8266 does not create any access point. Do...
by iron
28 Nov 2016, 09:03
Forum: ESP Easy: Hardware
Topic: DS18b20 nine sensor problems
Replies: 9
Views: 8165

Re: DS18b20 nine sensor problems

DavidVT wrote:Here is my first try with Fritzing:
The cable is really over 100 feet long but has worked for years with the Pi.
NodemcuDHT22_oneWire_bb.png
Missing a pullup on the DHT22 ?
by iron
21 Nov 2016, 08:53
Forum: ESP Easy: Software
Topic: ESP Easy Mega
Replies: 1
Views: 2429

ESP Easy Mega

Is here a good place to discuss Mega ?
by iron
14 Nov 2016, 13:13
Forum: ESP Easy: Software
Topic: ESP Easy next stable... (release candidates)
Replies: 155
Views: 123575

Re: ESP Easy next stable... (release candidates)

R145_RC6 is available for download http://www.letscontrolit.com/wiki/index.php/ESPEasy#Release_candidates Current status: Bug #01 FIXED in R138 : Clock event at system boot issues Bug #02 FIXED in R139 : Domoticz MQTT support was completely broken as of R109 (so it also affects R120!) Bug #03 FIXED...
by iron
04 Nov 2016, 14:41
Forum: ESP Easy: Software
Topic: ESP Easy next stable... (release candidates)
Replies: 155
Views: 123575

Re: ESP Easy next stable... (release candidates)

Upgrading over the air from 140 to 142 last night reset my "live/test" device to defaults.
That did not happen when upgrading the same device from 120 to 140.
by iron
23 Oct 2016, 18:54
Forum: ESP Easy: Software
Topic: Rules examples
Replies: 41
Views: 71427

Re: Rules examples

The "not so obvious" part is that you have to declare that gpio as an input switch.
Check this thread :
http://www.esp8266.nu/forum/viewtopic.php?f=6&t=2039
by iron
29 Sep 2016, 13:04
Forum: ESP Easy: Software
Topic: Rules GPIO state and toggle
Replies: 43
Views: 77674

Re: Rules GPIO state and toggle

You got my vote !! documentation and examples could use all the help they can take.
by iron
29 Sep 2016, 11:48
Forum: ESP Easy: Software
Topic: Rules GPIO state and toggle
Replies: 43
Views: 77674

Re: Rules GPIO state and toggle

You are the man !!!
I owe you a cold one (or two)

Thank you
Dimitri
by iron
28 Sep 2016, 11:35
Forum: ESP Easy: Software
Topic: Rules GPIO state and toggle
Replies: 43
Views: 77674

Re: Rules GPIO state and toggle

Hi, This way we toggle the output based on the state of the input (while assuming the state of the output has not changed in the meantime). The project is a light switch that can be toggled manualy via push button, actually a capacitive touch sensor ( http://www.aerial.net/shop/product/161_196/1802/...
by iron
27 Sep 2016, 21:25
Forum: ESP Easy: Software
Topic: Rules GPIO state and toggle
Replies: 43
Views: 77674

Re: Rules GPIO state and toggle

This way GPIO,16 toggles based on the state of the push button switch on GPIO,14, but push button will go high when pressed and then back to low when released (or vice versa) so GPIO,16 will always end up with 1, no ? This works with a latch type switch, but I do not see how this would work with a p...
by iron
27 Sep 2016, 09:33
Forum: ESP Easy: Software
Topic: Rules GPIO state and toggle
Replies: 43
Views: 77674

Re: Rules GPIO state and toggle

"Input Switch" is the only switch option definition available. (R120)

What am i missing ?
by iron
26 Sep 2016, 18:11
Forum: ESP Easy: Software
Topic: Rules GPIO state and toggle
Replies: 43
Views: 77674

Re: Rules GPIO state and toggle

The input Switch is defined as "input : pin mode" (under hardware tab) and assigned ONOFF name. The value of that returns without a problem.

It is the state of the output gpio I am looking for. The same gpio pin I want to toggle.
by iron
26 Sep 2016, 11:37
Forum: ESP Easy: Software
Topic: Rules GPIO state and toggle
Replies: 43
Views: 77674

Re: Rules GPIO state and toggle

I get the log of the pin with : status,gpio,16 { "log": "GPIO 16 Set to 1", "plugin": 1, "pin": 16, "mode": "output", "state": 1 } One would expect the value of state (0 or 1)to be comperatable by default as Rules do not parse the...
by iron
24 Sep 2016, 09:32
Forum: ESP Easy: Software
Topic: Rules GPIO state and toggle
Replies: 43
Views: 77674

Rules GPIO state and toggle

Hello, I searched the forum for GPIO status return within the Rules but without any luck. I have a push button switch on input GPIO 14 (ONOFF#Switch) and a Solid State Relay on output GPIO 16 The objective is to toggle the status of GPIO 16 when there is an event on GPIO 14 Something like : On ONOFF...