Search found 241 matches

by vader
04 Sep 2018, 11:39
Forum: ESP Easy: Software
Topic: Can I use GPIO 5 on my Sonoff Basic?
Replies: 4
Views: 4938

Re: Can I use GPIO 5 on my Sonoff Basic?

No. The Sonoffs have only GPIO 1,3 and 14 available for 'normal' use. If you don't need the LED, you can kick it and you can use GPIO 13 (inversed!) ;)
by vader
20 Aug 2018, 20:14
Forum: ESP Easy: General Discussion
Topic: Problems to compile espeasy
Replies: 10
Views: 11131

Re: Problems to compile espeasy

That's not so easy. For the SDMs you need first to know what kind of communication you want to use: hard- or software-serial. So a different kind of firmware is compiled! HW serial seems also to be fixed to GPIO-1 and -3 and baud rate of 9600. But HW serial makes a lot less problems, as I can read s...
by vader
20 Aug 2018, 15:21
Forum: ESP Easy: General Discussion
Topic: Problems to compile espeasy
Replies: 10
Views: 11131

Re: Problems to compile espeasy

@MaikelK: Make a "SDM" folder in the libraries folder and copy all stuff in, except the INO-file (stays in src folder). That works for me... :mrgreen:
by vader
25 Apr 2018, 20:40
Forum: ESP Easy: Software
Topic: sysload generic device is not show the right sysload
Replies: 1
Views: 2152

Re: sysload generic device is not show the right sysload

Not here. Shows in both the same value! No issue.

Main screen:
Current load: 5% (LC=11470)

Sysinfo:
System Info Test Test: 5
by vader
20 Apr 2018, 17:16
Forum: ESP Easy: Hardware
Topic: Wifi Status Led (Solved)
Replies: 12
Views: 11059

Re: Wifi Status Led

If one line (SDA or SCL) from I2C uses GPIO2 (if this is LED), than change it to another free one in the hardware menu
by vader
20 Apr 2018, 16:32
Forum: ESP Easy: Hardware
Topic: Wifi Status Led (Solved)
Replies: 12
Views: 11059

Re: Wifi Status Led

Any hardware/software installed that uses the same GPIO port as the LED? I mean GPIO2 is the LED...
by vader
20 Apr 2018, 15:53
Forum: ESP Easy: Hardware
Topic: Paper-mail with email project
Replies: 17
Views: 10449

Re: Paper-mail with email project

No problems with that. I use a reed switch for that and set MQTT delay to 0. Works over a year now like a charm... ;)
by vader
20 Apr 2018, 15:44
Forum: ESP Easy: Hardware
Topic: Wifi Status Led (Solved)
Replies: 12
Views: 11059

Re: Wifi Status Led

Wifi Status LED
GPIO → - None -
by vader
06 Apr 2018, 19:59
Forum: ESP Easy: General Discussion
Topic: Create backup of the current ESP8266 flash
Replies: 7
Views: 14369

Re: Create backup of the current ESP8266 flash

For what should it be good for :?: What you backup is what you flashed! And the config files are saved under Tools->Flash. All done.
by vader
21 Mar 2018, 00:11
Forum: ESP Easy: General Discussion
Topic: Boot reason in rule
Replies: 3
Views: 3861

Re: Boot reason in rule

A 5 min job to program.... :mrgreen:
by vader
19 Mar 2018, 15:28
Forum: ESP Easy: Software
Topic: Button as an Button
Replies: 4
Views: 5076

Re: Button as an Button

Why a 10k resistor to ground? Check 'Internal PullUp' for the switch and switch GND. Or must you switch Vcc?
by vader
12 Mar 2018, 19:14
Forum: ESP Easy: General Discussion
Topic: Notepad++ Rules syntax highlight
Replies: 23
Views: 12680

Re: Notepad++ Rules syntax highlight

Have you tried to rename the file to 'ESP_Easy_rules.xml'? After import you have the new option like this...
by vader
04 Mar 2018, 20:13
Forum: ESP Easy: Software
Topic: Store Espeasy State
Replies: 9
Views: 7845

Re: Store Espeasy State

With MQTT it should not be a problem. For me this works and the ESP restores the last state after reboot. ;)
by vader
04 Mar 2018, 17:00
Forum: Experimental
Topic: 2x Factory Reset button to web interface ?
Replies: 5
Views: 13157

Re: 2x Factory Reset button to web interface ?

I'm compiling my own ESPeasy version and so didn't had that problem.... :mrgreen:
by vader
03 Mar 2018, 12:04
Forum: ESP Easy: Hardware
Topic: Any definitive wiring guide for an ESP-01 1M ?
Replies: 17
Views: 20254

Re: Any definitive wiring guide for an ESP-01 1M ?

GPIO2 = UART Tx during flash programming; GPIO2

CH_PD and RST needs to pulled high for normal operation of the ESP.
by vader
03 Mar 2018, 11:41
Forum: Experimental
Topic: 2x Factory Reset button to web interface ?
Replies: 5
Views: 13157

Re: 2x Factory Reset button to web interface ?

It's a bug in the source code. See here.... TXBuffer += F("<TR><TD HEIGHT=\"30\">"); addButton(TXBuffer.buf, F("/?cmd=reset"), F("Factory Reset")); TXBuffer += F("<TD>"); TXBuffer += F("Erase all settings files"); TXBuffer += F("<TR><T...
by vader
27 Feb 2018, 17:42
Forum: ESP Easy: Software
Topic: Problem with compiling ESPEasy_v2.0-20180227 and arduino-1.8.5
Replies: 4
Views: 4468

Re: Problem with compiling ESPEasy_v2.0-20180227 and arduino-1.8.5

I would 1st delete all devices I don't need/use from the src folder (.ino files). Restart Arduino IDE and look if the warnings are less/gone now....
2nd: check for updates of the libraries.
by vader
26 Feb 2018, 16:06
Forum: ESP Easy: Software
Topic: rules on boot
Replies: 3
Views: 5059

Re: rules on boot

You can start events on boot-up with "on system#boot do ..... endon" in the rules....

See here
https://www.letscontrolit.com/wiki/inde ... rial_Rules
by vader
26 Feb 2018, 15:58
Forum: ESP Easy: General Discussion
Topic: Can't connect to ESP unit with static IP
Replies: 19
Views: 16217

Re: Can't connect to ESP unit with static IP

That has never worked (or is it a typo?): 192.168.2.8/control?cmd=GPIO.5.1

. is not a valid delimiter. Only <space> or , is allowed. So try 192.168.2.8/control?cmd=GPIO,5,1 like in your link.
by vader
21 Feb 2018, 20:27
Forum: ESP Easy: Software
Topic: How set values for Dummy Switch with mqtt?
Replies: 13
Views: 10881

Re: How set values for Dummy Switch with mqtt?

Due to a limited life time of the flash chips, we reduce all write cycles to a minimum.
by vader
21 Feb 2018, 13:45
Forum: ESP Easy: General Discussion
Topic: How flexible are if statements w/ %eventvalue%v?
Replies: 9
Views: 7247

Re: How flexible are if statements w/ %eventvalue%v?

You can try this:

on %eventvalue% < [T1#A] do //Check 1st if lower
if %eventvalue% > [T1#A] //Check 2nd if higher, so we also have a <> comparison ;)
bla, bla....
else
more bla, bla.... :mrgreen:
endif
endon
by vader
20 Feb 2018, 21:22
Forum: ESP Easy: General Discussion
Topic: How flexible are if statements w/ %eventvalue%v?
Replies: 9
Views: 7247

Re: How flexible are if statements w/ %eventvalue%v?

Only one operator is allowed. <> is not allowed. See source code... switch (compare) { case '>': if (Value1 > Value2) match = true; break; case '<': if (Value1 < Value2) match = true; break; case '=': if (Value1 == Value2) match = true; break;
by vader
17 Feb 2018, 21:25
Forum: ESP Easy: Hardware
Topic: Sonoff basic with wall switch
Replies: 23
Views: 21111

Re: Sonoff basic with wall switch

Sorry, but I see no image of your config!?
by vader
17 Feb 2018, 12:05
Forum: ESP Easy: Hardware
Topic: Sonoff basic with wall switch
Replies: 23
Views: 21111

Re: Sonoff basic with wall switch

Only 1 device is needed in ESPeasy (SW01) and a controller setup for Domoticz (HTTP or MQTT). Then you can use this rule...

on SW01#Switch do
if [SW01#Switch]=0
gpio,12,0
gpio,13,1
else
gpio,12,1
gpio,13,0
endif
endon
by vader
15 Feb 2018, 17:56
Forum: ESP Easy: Projects / Applications
Topic: Warning: Bug in OLED Framed plugin
Replies: 11
Views: 10597

Re: Warning: Bug in OLED Framed plugin

Depends on the the log level you have set. When you realised your project with the use of the dummy plugin, this does not write to flash (keeps data only in memory).
by vader
15 Feb 2018, 10:45
Forum: ESP Easy: Projects / Applications
Topic: Warning: Bug in OLED Framed plugin
Replies: 11
Views: 10597

Re: Warning: Bug in OLED Framed plugin

Flash Writes (daily/boot): 0 / 4 means flash write of the FIRMWARE, not the data of any plug-ins!
by vader
11 Feb 2018, 17:09
Forum: ESP Easy: Software
Topic: ESP-32 plans for ESPEasy (?)
Replies: 58
Views: 52494

Re: ESP-32 plans for ESPEasy (?)

@Martinus: There is a bug in the current Git sources of core 2.4.0. Enter e.g. 'if %systime%' in the ESPeasy rules field and save it. It should be cut to 'if' !! It's a parser problem of the web server....
by vader
04 Feb 2018, 14:22
Forum: ESP Easy: Software
Topic: ESP Easy Mega rules problem
Replies: 4
Views: 4264

Re: ESP Easy Mega rules problem

LongPulse,<GPIO>,<value in sec> or LongPulse_mS,<GPIO>,<value im msec>.

On 4PowerOn Do
longpulse 4,1,2 //e.g. for set GPIO 4 to HIGH for 2 sec and reverts back to LOW.
EndOn
by vader
30 Jan 2018, 19:08
Forum: ESP Easy: General Discussion
Topic: Event Processing - RFLink
Replies: 5
Views: 5978

Re: Event Processing - RFLink

On !RFLink# do what???
You have the task name !RFLink (I suggest not to use special characters like the !, better RFLink), but not the value after #!

See here...
https://www.letscontrolit.com/wiki/inde ... rial_Rules
by vader
21 Jan 2018, 13:09
Forum: ESP Easy: Software
Topic: Own idx, rules and domoticz
Replies: 51
Views: 45520

Re: Own idx, rules and domoticz

This is no clean solution. Give every device a unique name! E.g. PMSx003_1, PMSx003_2, and so on. The rule is also not correct. on PMSx003#PM25 do TaskValueSet 3,1,[PMSx003#PM1] TaskValueSet 4,1,[PMSx003#PM25] TaskValueSet 5,1,[PMSx003#PM10] endon You write a value to "TaskValueSet 4,1,[PMSx003...
by vader
21 Jan 2018, 12:44
Forum: ESP Easy: Software
Topic: MQTT Output helper acts different from GPIO command
Replies: 3
Views: 3296

Re: MQTT Output helper acts different from GPIO command

ESPeasy is too stupid to do an event processing (no rule is processed!) after receiving an MQTT command. That's the reason why _P029 exists as a "helper"...
by vader
21 Jan 2018, 12:32
Forum: ESP Easy: Software
Topic: Own idx, rules and domoticz
Replies: 51
Views: 45520

Re: Own idx, rules and domoticz

I don't know if that trick works, but what is if you enter 3x the same device in ESPeasy (ok, it needs 3 tasks...), but with different IDX (20,21,22)? And with a correct configured controller, you don't need a rule, because ESPeasy sends the values in the given delay time to Domoticz.
by vader
20 Jan 2018, 21:21
Forum: ESP Easy: Software
Topic: Own idx, rules and domoticz
Replies: 51
Views: 45520

Re: Own idx, rules and domoticz

The problem could be the IDX from Domoticz. In ESPeasy you have only IDX 20, but in Domoticz 20, 21 and 22....
by vader
20 Jan 2018, 20:21
Forum: ESP Easy: Software
Topic: Own idx, rules and domoticz
Replies: 51
Views: 45520

Re: Own idx, rules and domoticz

I don't think that the sensor is broken. You see values in ESPeasy, so the communication is also ok. Have you setup a controller in ESPeasy (Domoticz HTTP)? Because I don't see a checkmark in "Send to controller".
by vader
20 Jan 2018, 18:41
Forum: ESP Easy: Software
Topic: Own idx, rules and domoticz
Replies: 51
Views: 45520

Re: Own idx, rules and domoticz

Ok, so we know that the syntax of the command is right. Let's have a look at your device config. Can you post a screenshot (ESP easy)?
by vader
20 Jan 2018, 18:25
Forum: ESP Easy: Software
Topic: Own idx, rules and domoticz
Replies: 51
Views: 45520

Re: Own idx, rules and domoticz

What makes Domoticz if you send it direct with the browser?
_http://192.168.0.4:8080/json.htm?type=command&param=udevice&idx=22&nvalue=0&svalue=12.3

Does the value change to 12.3?
by vader
20 Jan 2018, 17:14
Forum: ESP Easy: Software
Topic: Own idx, rules and domoticz
Replies: 51
Views: 45520

Re: Own idx, rules and domoticz

@grovkillen: It must be: ... type=command&param= ... Your version with two "=" will never work.... From Domoticz's Wiki (https://www.domoticz.com/wiki/Domoticz_API/JSON_URL's): /json.htm? type=command&param =udevice&idx=IDX&nvalue=0&svalue=TEMP Tested here and works. :D
by vader
20 Jan 2018, 16:19
Forum: ESP Easy: Software
Topic: Own idx, rules and domoticz
Replies: 51
Views: 45520

Re: Own idx, rules and domoticz

What is this after command?
commandm=udev

Hope it is like this and is just a cut'n'paste problem:
command&param
by vader
19 Jan 2018, 14:23
Forum: ESP Easy: Software
Topic: ESP Easy v. 2.0 - SSD1306
Replies: 10
Views: 9722

Re: ESP Easy v. 2.0 - SSD1306

Ok, when you are able to compile your own version, it should not be an act to change the addresses in the source code.
by vader
19 Jan 2018, 14:17
Forum: ESP Easy: Software
Topic: ESP Easy v. 2.0 - SSD1306
Replies: 10
Views: 9722

Re: ESP Easy v. 2.0 - SSD1306

Check this out about this... http://wiki.modtronix.com/doku.php?id=tutorials:oled:ssd1306:tutorial_oled_ssd1306 The OLED has a solder jumper at the back for configuring the I2C address. When jumper is set to default setting of 0x78, use 0x3C in code When jumper is set to 0x7A, use 0x3D in code The r...
by vader
17 Jan 2018, 12:09
Forum: ESP Easy: General Discussion
Topic: ESP Easy Mega - timerSet & TaskValueSet not work
Replies: 9
Views: 7615

Re: ESP Easy Mega - timerSet & TaskValueSet not work

I made a cut & paste and the rule works with current git sources. The only thing is, that the set time is wrong. 1 sec takes >2 secs of time. :shock:
by vader
17 Jan 2018, 09:15
Forum: ESP Easy: Software
Topic: cannot get %eventvalue% to work
Replies: 15
Views: 10514

Re: cannot get %eventvalue% to work

@grovkillen: Micro$oft lives from user are not seeing what crap they use... :lol:
by vader
17 Jan 2018, 09:01
Forum: ESP Easy: Software
Topic: P029 MQTT helper works when disabled
Replies: 6
Views: 5322

Re: P029 MQTT helper works when disabled

I have no account on github. Maybe there is already an issue opened there.... :?:
by vader
17 Jan 2018, 08:59
Forum: ESP Easy: Software
Topic: cannot get %eventvalue% to work
Replies: 15
Views: 10514

Re: cannot get %eventvalue% to work

Ok Windows 10 is a virus of its own.... :mrgreen: But, why are you using that old version of ESPeasy (R120)? You should try R147 or better 2.xx.
by vader
16 Jan 2018, 22:23
Forum: ESP Easy: Software
Topic: P029 MQTT helper works when disabled
Replies: 6
Views: 5322

Re: P029 MQTT helper works when disabled

Removing it from the settings webpage is no good idea. The solution is in fact in _C002. The first riddle you solved! ;)
by vader
16 Jan 2018, 22:19
Forum: ESP Easy: Software
Topic: ESP Easy V2.0.0 Dev12; Rules not updating field
Replies: 4
Views: 4148

Re: ESP Easy V2.0.0 Dev12; Rules not updating field

I have checked the source code now and could not find the check for a entered square bracket. So I assume that only numbers (0-1) and operators (+-*/^) are allowed. NO task values!
by vader
16 Jan 2018, 21:44
Forum: ESP Easy: Software
Topic: P029 MQTT helper works when disabled
Replies: 6
Views: 5322

Re: P029 MQTT helper works when disabled

Don't worry, it's just one of the many bugs.... :lol: Can you compile your own version? Then I can give you the solution....
by vader
16 Jan 2018, 11:57
Forum: ESP Easy: Software
Topic: compile ESP ESAY MEGA tcp_impl.h not found
Replies: 21
Views: 15608

Re: compile ESP ESAY MEGA tcp_impl.h not found

Hint: Just delete all _P***.ino files in the src folder you are NOT using. That helps also sometimes to fix compiling issues and reduces the size of the sketch file. ;)