Search found 473 matches

by manjh
04 Aug 2017, 21:56
Forum: ESP Easy: General Discussion
Topic: Two rules with timer - problem
Replies: 1
Views: 1633

Re: Two rules with timer - problem

As far as I can see in this block, you are setting timer 1 twice!
Can you show the rules?
by manjh
01 Aug 2017, 21:41
Forum: ESP Easy: General Discussion
Topic: WiFi Direct Connection
Replies: 17
Views: 13197

Re: WiFi Direct Connection

this may or may not work, but I think that once you have things running, you will think of ways to make this setup a little "smarter". In your first post you mention collecting the temperatures and averaging them. Is it really that simple? I can already think of a few extra requirements.....
by manjh
31 Jul 2017, 22:35
Forum: ESP Easy: General Discussion
Topic: WiFi Direct Connection
Replies: 17
Views: 13197

Re: WiFi Direct Connection

@manjh, Many thanks for the links. It's given me some ideas already for future projects. I had not previously discovered the Nodo forum, there is a wealth of interesting stuff there, thank you! It's a challenge for my extremely small knowledge of Dutch, but fortunately there is always Google Transl...
by manjh
30 Jul 2017, 18:31
Forum: ESP Easy: General Discussion
Topic: WiFi Direct Connection
Replies: 17
Views: 13197

Re: WiFi Direct Connection

There is some info in the Nodo project forum. It is mostly in Dutch. http://www.nodo-domotica.nl/forum/viewtopic.php?f=41&t=2299&p=13100&hilit=hr20#p13100 and: https://github.com/OpenHR20/OpenHR20 https://piontecsmumble.wordpress.com/2013/02/25/openhr-20-tutorial-part-0-introduction/ I p...
by manjh
29 Jul 2017, 21:27
Forum: ESP Easy: General Discussion
Topic: WiFi Direct Connection
Replies: 17
Views: 13197

Re: WiFi Direct Connection

Hello manjh, You mentioned that you had constructed a radiator valve with remote control, based on a Honeywell valve. I'd be very interested to know more if you would like to share.... ;) Best wishes Andrew It was a long time ago... I remember it was based on a "smart" Honeywell valve. Bu...
by manjh
29 Jul 2017, 18:31
Forum: ESP Easy: General Discussion
Topic: WiFi Direct Connection
Replies: 17
Views: 13197

Re: WiFi Direct Connection

this may or may not work, but I think that once you have things running, you will think of ways to make this setup a little "smarter". In your first post you mention collecting the temperatures and averaging them. Is it really that simple? I can already think of a few extra requirements......
by manjh
18 Jul 2017, 12:21
Forum: ESP Easy: Software
Topic: relay state after reboot
Replies: 26
Views: 18645

Re: relay state after reboot

grovkillen wrote: 18 Jul 2017, 10:48 Yes, that's considered a bug. Will you file it as an issue on GitHub?
Done.
by manjh
18 Jul 2017, 09:36
Forum: ESP Easy: Software
Topic: relay state after reboot
Replies: 26
Views: 18645

Re: relay state after reboot

I just tried this approach: in the system-boot section added a timerset for 5 seconds. Then when the timer expires, switched on the two relays that I want switched on. After this everything works as it should! :) It could mean that the I2C initializing is done after the execution of the system-boot ...
by manjh
18 Jul 2017, 09:03
Forum: ESP Easy: Software
Topic: relay state after reboot
Replies: 26
Views: 18645

Re: relay state after reboot

Since it is the two I2C pins it might be that these are still being active as such right at boot. (Just my wild guess, I haven't studied the code.) Ah, that could make sense. During the boot process the I2C is activated (or in this case: deactivated). If that happens after the execution of the &quo...
by manjh
18 Jul 2017, 01:04
Forum: ESP Easy: Software
Topic: relay state after reboot
Replies: 26
Views: 18645

Re: relay state after reboot

Did you try : on Toggle2=1 do if [relais2#state]=1 Event TurnOff2 else Event TurnOn2 endif endon No, I did not try that. But I don't see the point: all rules work just fine. The only problem is when I switch a relay on after boot. It then goes into a strange state, which can only be corrected by an...
by manjh
17 Jul 2017, 22:12
Forum: ESP Easy: Software
Topic: relay state after reboot
Replies: 26
Views: 18645

Re: relay state after reboot

on Toggle2 do if [relais2#state]=1 Event TurnOff2 else Event TurnOn2 endif endon on button2#state do Event Toggle2 endon Did you try : on Toggle2=1 do if [relais2#state]=1 Event TurnOff2 else Event TurnOn2 endif endon No, I did not try that. But I don't see the point: all rules work just fine. The ...
by manjh
17 Jul 2017, 17:24
Forum: ESP Easy: Software
Topic: relay state after reboot
Replies: 26
Views: 18645

Re: relay state after reboot

Can you try like this: on System#Boot do Event TurnOff1 Event TurnOff2 Event TurnOff3 Event TurnOff4 Event Toggle2 Event Toggle3 endon I can imagine your toggle events get confused when you set channels manually On at boot so above should work properly I tried this approach, does not make any diffe...
by manjh
17 Jul 2017, 09:13
Forum: ESP Easy: Software
Topic: relay state after reboot
Replies: 26
Views: 18645

Re: relay state after reboot

I'm missing some toggle rules like this one: On Button2#State do If [Relais2#State]=1 gpio,5,0 Else gpio,5,1 EndIf EndOn I did not think they are relevant.At bootup I only use on and off.... that puts the two 'on" relays in a very strange state. :?: At bootup you put the relay to the on state,...
by manjh
17 Jul 2017, 00:31
Forum: ESP Easy: Software
Topic: relay state after reboot
Replies: 26
Views: 18645

Re: relay state after reboot

LisaM wrote: 17 Jul 2017, 00:16
manjh wrote: 16 Jul 2017, 20:18 Done.
I'm missing some toggle rules like this one:

Code: Select all

On Button2#State do
    If [Relais2#State]=1
        gpio,5,0
    Else
        gpio,5,1
    EndIf
EndOn
I did not think they are relevant.At bootup I only use on and off.... that puts the two 'on" relays in a very strange state.
by manjh
16 Jul 2017, 23:45
Forum: ESP Easy: Software
Topic: relay state after reboot
Replies: 26
Views: 18645

Re: relay state after reboot

grovkillen wrote: 16 Jul 2017, 22:42 Those images are broken for me.
Weird/ They show up fine as attachements to me...
I'll have another look tomorrow morning.. :?
by manjh
16 Jul 2017, 20:18
Forum: ESP Easy: Software
Topic: relay state after reboot
Replies: 26
Views: 18645

Re: relay state after reboot

LisaM wrote: 16 Jul 2017, 19:39
manjh wrote: 16 Jul 2017, 09:37
LisaM wrote: 15 Jul 2017, 21:09 Rules + devices screenshot please!!!
Done.
Screenshots of the button devices?
Done.
by manjh
16 Jul 2017, 15:39
Forum: ESP Easy: Software
Topic: relay state after reboot
Replies: 26
Views: 18645

Re: relay state after reboot

Since you didn't mention stuff like this it is hard to help. But you could add a delay before setting the GPIO state. Right on boot might be a tad too fast? I will try that. But it is still very strange, since the actions are actually performed OK but the state of the two relays that are switched o...
by manjh
16 Jul 2017, 12:11
Forum: ESP Easy: Software
Topic: relay state after reboot
Replies: 26
Views: 18645

Re: relay state after reboot

Please study this information. https://www.letscontrolit.com/wiki/index.php/Configuration Can you be more specific as to which part of this overview contains a lead to my problem? The Sonoff 4CH uses GPIO 12, 5, 4 and 15 for the relays. I realize 4 and 5 are normally used for SDA/SCL, but I removed...
by manjh
16 Jul 2017, 09:37
Forum: ESP Easy: Software
Topic: relay state after reboot
Replies: 26
Views: 18645

Re: relay state after reboot

LisaM wrote: 15 Jul 2017, 21:09 Rules + devices screenshot please!!!
Done.
by manjh
15 Jul 2017, 18:08
Forum: ESP Easy: Software
Topic: relay state after reboot
Replies: 26
Views: 18645

relay state after reboot

I've set up a Sonoff 4CH with ESP Easy and am now fine tuning the rules. Besides simple "on" and "off", I've also created rules for the buttons to toggle the relay. Works fine. But I have also set two of the relays to be switched on after reboot. It works, the two relays are acti...
by manjh
12 Jul 2017, 11:26
Forum: ESP Easy: Software
Topic: Flashing Sonoff Wifi Modules / not working
Replies: 36
Views: 45213

Re: Flashing Sonoff Wifi Modules / not working

I have several "single channel" Sonof switches, and two 4CH units. All are working perfectly with ESPEasy, but you have to be careful on how you do it. first, make sure you use a 3.3V FTDI, with the right drivers. Sometimes the FTDI uses "fake" chips and you need to explicitely i...
by manjh
11 Jul 2017, 13:09
Forum: ESP Easy: Hardware
Topic: Sonoff 4CH with ESPEasy
Replies: 151
Views: 167870

Re: Sonoff 4CH with ESPEasy

I just received a fresh Sonoff 4CH this week, and tried to flash it. Before doing that I checked with the Sonoff app and found the unit in good working condition. Then I tried to flash it with the "Captain-Slow" R148 bin file with the NodeMCU programmer. It appeared to load OK, but after t...
by manjh
06 Jul 2017, 23:21
Forum: ESP Easy: Hardware
Topic: New ESP gadget
Replies: 326
Views: 714329

Re: New ESP gadget

I have a Sonoff device that has been working OK for a long time, and now suddenly fails. It cannot be reached via its designated IP address. When I check Wifi, I can see that it offers the access point, as if it has just been flashed. It comes up as ESP_21, which makes sense since I assigned it to u...
by manjh
11 Jun 2017, 19:21
Forum: ESP Easy: Hardware
Topic: Sonoff 4CH with ESPEasy
Replies: 151
Views: 167870

Re: Sonoff 4CH with ESPEasy

Did you check what the unit gives back over serial? Set at 115K and see what comes out...
by manjh
27 May 2017, 08:52
Forum: ESP Easy: Hardware
Topic: Sonoff 4CH with ESPEasy
Replies: 151
Views: 167870

Re: Sonoff 4CH with ESPEasy

Shardan wrote: 27 May 2017, 00:17 Did you set DIO mode for flashing?

Otherwise your 4ch might be faulty.
Where in the Arduino IDE can I set DIO mode?
by manjh
26 May 2017, 20:37
Forum: ESP Easy: Hardware
Topic: Sonoff 4CH with ESPEasy
Replies: 151
Views: 167870

Re: Sonoff 4CH with ESPEasy

I've used these ftdi units for several other flashes, without any problem. Most recently I flashed 4 Sonoff single channel units, and they work just fine. So I am guessing I must have the "real" chips... :D
FYI: I have two different FTDI converters, tried both.
by manjh
26 May 2017, 18:07
Forum: ESP Easy: Hardware
Topic: Sonoff 4CH with ESPEasy
Replies: 151
Views: 167870

Re: Sonoff 4CH with ESPEasy

I used a pre-compiled bin file, especially for the Sonoff 4CH. But just to make sure, I installed the Arduino environment, downloaded the latest 2.0+ source, installed the libs in the right place, and downloaded the ESP board info set. Then selected the right com port and board (ESP8285), and then r...
by manjh
25 May 2017, 15:07
Forum: ESP Easy: Hardware
Topic: Sonoff 4CH with ESPEasy
Replies: 151
Views: 167870

Re: Sonoff 4CH with ESPEasy

I need a little push in the right direction. This morning I flashed brandnew Sonoff 4CH with an ESP Easy bin that I found (I currently don't have the compile environment setup, so prefer a pre-compiled set). Attached an FTDI device (no TX/RX crossing, as advised), and attached to a USB port. Flashin...
by manjh
25 May 2017, 13:10
Forum: ESP Easy: General Discussion
Topic: SendToHTTP not working
Replies: 4
Views: 3754

Re: SendToHTTP not working

Found it. Turns out I copied the sendtohttp statement from a rules example somewhere, and it contained an error. I had already wondered about the extra "m" in "paramm". I now tried this: sendtohttp,10.0.0.199,8080,/json.htm?param=switchlight&type=command&idx=1687&swit...
by manjh
24 May 2017, 23:48
Forum: ESP Easy: General Discussion
Topic: SendToHTTP not working
Replies: 4
Views: 3754

Re: SendToHTTP not working

any ideas? I've just spent some more time trying to get this to work, no progress... :evil:
by manjh
24 May 2017, 12:20
Forum: ESP Easy: General Discussion
Topic: SendToHTTP not working
Replies: 4
Views: 3754

SendToHTTP not working

I've been trying to include a SendToHTTP statement in a rule, but somehow Domoticz does not get the command. Have tried everything, and am now slowly going mad... I'm sure this is one of these "of course" mistakes, most likely something stupid, but I don't see it. Can someone check this st...
by manjh
24 May 2017, 08:50
Forum: ESP Easy: General Discussion
Topic: backup rules?
Replies: 15
Views: 7468

Re: backup rules?

OK... which is still WIP, right? Is it stable enough for my regular ESP nodes, or should I stay away for now? I've used if for all my nodes with no real issues. But if you have really "life dependent" systems running I would try it out on a lab node first. (I'm on the 2.0.0-dev7 version)....
by manjh
24 May 2017, 08:41
Forum: ESP Easy: General Discussion
Topic: backup rules?
Replies: 15
Views: 7468

Re: backup rules?

OK... which is still WIP, right? Is it stable enough for my regular ESP nodes, or should I stay away for now?
by manjh
24 May 2017, 08:32
Forum: ESP Easy: General Discussion
Topic: backup rules?
Replies: 15
Views: 7468

Re: backup rules?

No change. Still need to logon and then get the main screen, then tried again and same response. No download.
This node is on build 147.
by manjh
24 May 2017, 08:22
Forum: ESP Easy: General Discussion
Topic: backup rules?
Replies: 15
Views: 7468

Re: backup rules?

I know it is not what you're asking for (and I have personally opened up the idea of integrating the rules in to the settings file here ). BUT, as a workaround I use these URLs to automatically download my backups from my nodes: <espeasyip>/filelist/config.dat <espeasyip>/filelist/rules1.txt <espea...
by manjh
23 May 2017, 20:07
Forum: ESP Easy: General Discussion
Topic: backup rules?
Replies: 15
Views: 7468

Re: backup rules?

I understand both replies, but it does not bring us to a fully secure backup situation. Currently the function is called "Save settings", and it is not immediately clear that this does not include the rules. I understand how simple it is to copy this as text file, and I will do that for no...
by manjh
23 May 2017, 16:23
Forum: ESP Easy: General Discussion
Topic: backup rules?
Replies: 15
Views: 7468

backup rules?

Perhaps this was discussed elsewhere, but I cannot find a post about it.
When I make a backup of the settings of an ESP units, it looks like it does not include the rules!
Is this "as designed"?
by manjh
11 May 2017, 23:06
Forum: RFlink: General Discussions
Topic: Newbie advice
Replies: 7
Views: 6201

Re: Newbie advice

Stuntteam wrote: 10 May 2017, 15:12 The RFLink firmware runs on the Mega.. so you will need a Mega2560 + the RF modules you want to use.
Ah, yes. Of course.
I blame it on the ease-of-ue of the RFLink: once you have it running, you forget... :)
by manjh
10 May 2017, 13:30
Forum: RFlink: General Discussions
Topic: Newbie advice
Replies: 7
Views: 6201

Re: Newbie advice

Thanks for the advice guys :) Looks like I'll be buying an Arduino mega and RFlink and connecting it to my windows server 2012 box If memory serves me ok, I think you can use an RFLink without the Mega. It connects to the server with a USB cable. The Mega is needed when you want to run the RFLink v...
by manjh
08 May 2017, 22:02
Forum: ESP Easy: General Discussion
Topic: What is the best way to reset ESP unit?
Replies: 1
Views: 1649

What is the best way to reset ESP unit?

Over time I have repeatedly struggled trying to reset an ESP unit. When the unit is factory new, there is no problem. But once it has been flashed and something is wrong it becomes difficult. It seems that some info is retained after a new flash, and some aren't I found that it sometimes helps to fl...
by manjh
08 May 2017, 21:52
Forum: Introduce yourself
Topic: Hello guys - Noob from LA
Replies: 6
Views: 6576

Re: Hello guys - Noob from LA

Hi... on this forum you will find information about ESP Easy and RFLink. Starting point is www.letscontrolit.com. This will also point to the webshop. Information about Domoticz can be found in the forum and Wiki specifically for Domoticz: http://www.domoticz.com/forum/ and http://www.domoticz.com/w...
by manjh
08 May 2017, 11:59
Forum: RFlink: General Discussions
Topic: Newbie advice
Replies: 7
Views: 6201

Re: Newbie advice

Hi, I'm completely new to this and still trying to find my feet. I am looking to purchase a new doorbell and when pressed as well as ringing I would like a notification to my phone. I'm pretty sure this is possible from reading many forum posts, but my initial question is much more simple: do you n...
by manjh
01 May 2017, 09:23
Forum: Introduce yourself
Topic: A newbie guy
Replies: 1
Views: 2545

Re: A newbie guy

Hello every body I was start to use the ESP8266 since few months but I progress slowly. I have got also a raspberrypi and 3 arduinos and I'm improve my knowledge in home automation, (for the moment mainly on recording data (electric consumption and temperature). Probably I will have question in the...
by manjh
29 Apr 2017, 13:14
Forum: ESP Easy: Software
Topic: switch feedback
Replies: 0
Views: 1088

switch feedback

I have attached a rainsensor that I bought from Conrad a long time ago. It has its own power supply, and two output wires that behave as on/off switch. These wires are attached to an ESP module, and then defined as "switch input" in the devices tab. I marked Pullup, Inversed, and Send Data...
by manjh
28 Mar 2017, 13:10
Forum: RFLink: Nederlands support forum
Topic: Schakelaar voor rolluiken 433Mhz
Replies: 21
Views: 22746

Re: Schakelaar voor rolluiken 433Mhz

Kun je in de code van het "blinds" device niet het laatst gegeven commando opzoeken, en dat nogmaals sturen? Dan zou je een heel eenvoudige implementatie van de stop-kop hebben!
by manjh
27 Mar 2017, 09:37
Forum: RFLink: Nederlands support forum
Topic: Schakelaar voor rolluiken 433Mhz
Replies: 21
Views: 22746

Re: Schakelaar voor rolluiken 433Mhz

Bij de KAKU schakelaars is een "stop" gewoon herhalen van het laatstgegeven commando.
Dus als je het rolluik omlaag laat bewegen, dan is nogmaals "omlaag" gewoon de stop.
by manjh
26 Mar 2017, 17:33
Forum: RFLink: Nederlands support forum
Topic: Schakelaar voor rolluiken 433Mhz
Replies: 21
Views: 22746

Re: Schakelaar voor rolluiken 433Mhz

Hmmm... weet niet hoe het komt, maar het probleem heeft zichzelf opgelost... ik kan nu alles bedienen met type "blinds". Ben ook even aan het spelen geweest met de Venetian Blinds (vanwege die stopknop), maar afhankelijk van US of EU type, werkt de stop alleen goed bij omhoog of bij omlaag...
by manjh
26 Mar 2017, 17:13
Forum: RFLink: Nederlands support forum
Topic: Schakelaar voor rolluiken 433Mhz
Replies: 21
Views: 22746

Re: Schakelaar voor rolluiken 433Mhz

Ik ben de laatste dagen aan het vechten met mijn SUN650 devices. Ik had ze als "blinds" in gebruik in Domoticz, maar dat werkt niet meer. Heb van alles geprobeerd, uiteindelijk gewoon start/stop als device type gekozen. Het gekke is dat de signalen C1 en C3 goed werken, maar C2 vertikt het...
by manjh
21 Mar 2017, 19:39
Forum: RFlink: General Discussions
Topic: Domoticz dropping TCP/IP connections
Replies: 2
Views: 3922

Domoticz dropping TCP/IP connections

OK, I'm not sure if this problem is at all related to ESPEasy or RFLink, but I thought I'd give it a try. Until today I was using a USB connected RFLink. Also use an OTGW, and a P1 interface, both based on ESPEasy. Today I finally assembled my new LAN connected RFLink. All seems to work OK, after ch...
by manjh
05 Mar 2017, 19:30
Forum: RFLink: Development and announcements
Topic: Quigg RCR/DS5.3711A
Replies: 3
Views: 12344

Re: Quigg RCR/DS5.3711A

Apologies. After upgrading RFLink I failed to do a system restart... RFLink was not accessible for anything.
So I re-booted, and tested the Quigg units again: works just fine..... problem solved!

By the way: my compliments for the extremely quick responses to my post!