Search found 469 matches

by toffel969
29 Mar 2018, 09:11
Forum: ESP Easy: Software
Topic: SoftSerial
Replies: 3
Views: 3229

Re: SoftSerial

arnoldg wrote: 29 Mar 2018, 07:04 Thanks,

That was the problem, i overlooked it for 3 days :oops:
Great :) ! Glad to have been of assistance.
by toffel969
28 Mar 2018, 17:25
Forum: ESP Easy: General Discussion
Topic: How many Nested EVENTS?
Replies: 16
Views: 13985

Re: How many Nested EVENTS?

It's true that the boolean checks are also limited to three according to the wiki. But this is about calling events from an event. Technically this is a recursive function call with all the usual challenges. Each level occupies stack space and also has a file handle open to SPIFFS. This has never b...
by toffel969
28 Mar 2018, 13:28
Forum: ESP Easy: Software
Topic: SoftSerial
Replies: 3
Views: 3229

Re: SoftSerial

Is i2c activated on D1+2? That would be the default settings
by toffel969
28 Mar 2018, 09:23
Forum: ESP Easy: General Discussion
Topic: How many Nested EVENTS?
Replies: 16
Views: 13985

Re: How many Nested EVENTS?

The rule engine currently processes at three levels max. However, the protection mechanism didn't work properly on the Mega where we have multiple rule sets and it crashed the system because of to many open files. The dev branch has been updated. It now stops processing before a new file handle is ...
by toffel969
27 Mar 2018, 15:21
Forum: uPyEasy: General Discussion
Topic: uPyEasy is going NB-IoT!
Replies: 9
Views: 19104

Re: uPyEasy is going NB-IoT!

.....AAAargh....it's in Dutch.....Let me find something in english......and I'll be back..... Is there really still anyone who can't read Dutch? ... *TD-er opens link and sees a lot of managers talk and I get it why Google translate could do so much better on Chinese, compared to Dutch ;) Dutch is ...
by toffel969
27 Mar 2018, 13:08
Forum: ESP Easy: General Discussion
Topic: MQTT IMPORT and rules trigger
Replies: 2
Views: 2833

Re: MQTT IMPORT and rules trigger

Hi, Does MQTT Import modified with taskvalueset triggers a rule? I am having the following issue: I created a MQTT IMPORT task (name=import, value=set1, task number 2) and the following rule: on import#set1 do ..do something .. endon If I fire the command from a rule: taskvalueset,2,1,100 taskRun,2...
by toffel969
27 Mar 2018, 13:01
Forum: ESP Easy: General Discussion
Topic: How many Nested EVENTS?
Replies: 16
Views: 13985

Re: How many Nested EVENTS?

Hi, I tried to understand your rules in more details. Why do you need the TaskRun commands on the import and the dummy device? They seem not necessary, from my expierience the dummy is updated without running the task. (It just doesn't trigger an event, but the value is updated and if you read from ...
by toffel969
27 Mar 2018, 12:49
Forum: ESP Easy: General Discussion
Topic: How many Nested EVENTS?
Replies: 16
Views: 13985

Re: How many Nested EVENTS?

As such there should be no limit on how many events can be nested. That is not true. Every nested event will consume stack space. As a result the maximum nesting level is limited by stack space (RAM). I don't know if there is protection against stack overflow. If there is, the expected behaviour wo...
by toffel969
27 Mar 2018, 12:02
Forum: Staff Announcements forum
Topic: Buy merchandise to support the ESP Easy project
Replies: 20
Views: 31451

Re: Buy merchandise to support the ESP Easy project

grovkillen wrote: 27 Mar 2018, 09:18
toffel969 wrote: 27 Mar 2018, 09:08
spachal wrote: 26 Mar 2018, 20:56 Good idea, but what about to create some Paypal acc, for example, to support this project without ordering branded clothes? :]
In this case I'll send five bucks for sure!
+1
I've updated the first post. Thanks.
I sent 5€, seems to work ok
by toffel969
27 Mar 2018, 11:59
Forum: ESP Easy: General Discussion
Topic: How many Nested EVENTS?
Replies: 16
Views: 13985

Re: How many Nested EVENTS?

That usually happens with syntax errors. As such there should be no limit on how many events can be nested. I see a problem with your syntax though, I post corrected version underneath On System#Boot do gpio,14,1 //z1 gpio,12,1 //z2 gpio,13,1 //z3 taskvalueset 1,1,1 // r1=off taskvalueset 1,2,1 // r...
by toffel969
27 Mar 2018, 09:08
Forum: Staff Announcements forum
Topic: Buy merchandise to support the ESP Easy project
Replies: 20
Views: 31451

Re: Buy merchandise to support the ESP Easy project

spachal wrote: 26 Mar 2018, 20:56 Good idea, but what about to create some Paypal acc, for example, to support this project without ordering branded clothes? :]
In this case I'll send five bucks for sure!
+1
by toffel969
26 Mar 2018, 16:39
Forum: Introduce yourself
Topic: Hi to all
Replies: 1
Views: 2969

Re: Hi to all

Welcome!
by toffel969
26 Mar 2018, 13:06
Forum: ESP Easy: General Discussion
Topic: Installing Plugins
Replies: 9
Views: 18512

Re: Installing Plugins

>The list of all official plugins Thank you, but it is not this list that In need, I need to know how to install the plugin, once I've chosen one from this list. >It sounds to me that you should stick with pre-built FW files. Because I have demonstrated my stupidity, you mean? I knew nothing about ...
by toffel969
26 Mar 2018, 00:33
Forum: ESP Easy: General Discussion
Topic: taskvalueset and rules trigger.
Replies: 5
Views: 8856

Re: taskvalueset and rules trigger. Bug?

That's by design. To trigger the rule you need to add a TaskRun after the TaskValueSet. TaskRun,<task/device nr> Read more here: https://www.letscontrolit.com/wiki/index.php/ESPEasy_Command_Reference Hi, something is still not right. Here is the rule: on task1 do taskvalueset,1,1,%eventvalue% taskR...
by toffel969
24 Mar 2018, 09:12
Forum: ESP Easy: Software
Topic: Sensor delay
Replies: 4
Views: 3486

Re: Sensor delay

Dear Shardan, Thank you for the reply. I'll try phototransistor. It is going to be much better. Anyway, any ideas about delay? BR, Vitaly use the pulse counter, it will catch all the pulses inbetween delays (i think it uses interupt function,not sure) and then update the device in delay interval.. ...
by toffel969
23 Mar 2018, 19:30
Forum: uPyEasy: General Discussion
Topic: uPyEasy is going NB-IoT!
Replies: 9
Views: 19104

Re: uPyEasy is going NB-IoT!

Exciting news :!: great stuff
by toffel969
23 Mar 2018, 13:43
Forum: ESP Easy: Software
Topic: GPIO-1 and GPIO-3. Can I use them?
Replies: 13
Views: 23321

Re: GPIO-1 and GPIO-3. Can I use them?

The input port number depends on the address you've chosen with A0...A2. If you have set A0-A3 to "0" or "Off", this is chip address 0, so input pins for the setup in ESPEasy are pins 1 ... 8 (so called "Port Range") If you set for example A0 = 0, A1 = 1 and A2 = 0 you...
by toffel969
22 Mar 2018, 14:24
Forum: ESP Easy: Software
Topic: GPIO-1 and GPIO-3. Can I use them?
Replies: 13
Views: 23321

Re: GPIO-1 and GPIO-3. Can I use them?

onlize wrote: 22 Mar 2018, 13:17 Do you mean PCF8574? I will definitely try, thank you for your advice.
Yes, either PCF8574 or MCP23017.
by toffel969
22 Mar 2018, 07:56
Forum: ESP Easy: Software
Topic: GPIO-1 and GPIO-3. Can I use them?
Replies: 13
Views: 23321

Re: GPIO-1 and GPIO-3. Can I use them?

Read here : http://www.letscontrolit.com/forum/viewtopic.php?t=1462

Do yourself a favour and get an i2c i/o expander for that unit. This will free up enough gpio
by toffel969
19 Mar 2018, 15:17
Forum: ESP Easy: Software
Topic: Button as an Button
Replies: 4
Views: 5129

Re: Button as an Button

Hi, change switch-type from active low to normal switch
by toffel969
13 Mar 2018, 11:43
Forum: ESP Easy: General Discussion
Topic: New rules operators??
Replies: 12
Views: 9292

Re: New rules operators??

Thank you very much for keeping the wiki up to date with these awesome new additions.
by toffel969
12 Mar 2018, 06:59
Forum: ESP Easy: General Discussion
Topic: WOW!!! Somebody installed a turbocharger!!!
Replies: 5
Views: 4353

Re: WOW!!! Somebody installed a turbocharger!!!

Sounds great and is an extremely welcome improvement, thx to everyone involved.
by toffel969
11 Mar 2018, 08:52
Forum: ESP Easy: General Discussion
Topic: rtttl play on mqtt message?
Replies: 23
Views: 14152

Re: rtttl play on mqtt message?

Psy0rz told me the rtttl code is not stable at all. You can even get it in a endless loop as I describe here: https://github.com/letscontrolit/ESPEasy/issues/446 I think we need to remove the hashtag (#) from the tune code, it might trigger some rules by mistake? I mean in the command execution int...
by toffel969
08 Mar 2018, 13:52
Forum: ESP Easy: Hardware
Topic: Sonoff Basic + wall push button with pilot light
Replies: 21
Views: 16685

Re: Sonoff Basic + wall push button with pilot light

Reporting progress, I connected led separately as per toffel969 suggestion, good news that interference is gone. But led now is very bright, like two or three times brighter than on other switches, even those connected to 220v. I will see how well it works in the night, but I am not sure if it is a...
by toffel969
08 Mar 2018, 13:47
Forum: ESP Easy: Software
Topic: s0 kWh meter counter
Replies: 6
Views: 8214

Re: s0 kWh meter counter

The wiki is your friend
by toffel969
08 Mar 2018, 08:40
Forum: ESP Easy: General Discussion
Topic: rtttl play on mqtt message?
Replies: 23
Views: 14152

Re: rtttl play on mqtt message?

I don't use mqtt, and know little to nothing about it..
by toffel969
08 Mar 2018, 07:51
Forum: ESP Easy: General Discussion
Topic: rtttl play on mqtt message?
Replies: 23
Views: 14152

Re: rtttl play on mqtt message?

im playing around with the PLUGIN_BUILD_TESTING version and made it play starwars theme when i push a button <3 thats awsome, i know :D but i wanted to make a doorbell so the button is located on a esp8266 at the front door, and when pushed it send a mqtt topic so the unit with the buzzer play the ...
by toffel969
06 Mar 2018, 19:03
Forum: ESP Easy: Projects / Applications
Topic: 2 ProMiniExtender on 1 ESP possible?
Replies: 4
Views: 3961

Re: 2 ProMiniExtender on 1 ESP possible?

Thanks for the quick reply. That would confirm that currently multiple, daisy-chained, PME's are not provisioned for in the current firmware. I might attempt to modify the code to allow for this. Changing the PME sketch would be quite straightforward, only the I²C address should be changed. Modifyi...
by toffel969
06 Mar 2018, 10:34
Forum: ESP Easy: Projects / Applications
Topic: 2 ProMiniExtender on 1 ESP possible?
Replies: 4
Views: 3961

Re: 2 ProMiniExtender on 1 ESP possible?

I was wondering the same thing. Is it possible to daisy-chain multiple PME's to one ESP module? The I²C bus allows daisy-chaining provided each PME has a unique I²C address, however I see no way to set an I²C address for each PME. I think the current soft assumes a single PME with a default I²C add...
by toffel969
05 Mar 2018, 13:53
Forum: ESP Easy: Software
Topic: rules sending data
Replies: 14
Views: 15915

Re: rules sending data

I knew that you do not need a password and login to login in domoticz and send with SendToHTTP. I tried to put a password and an identifier to try and here is the result. :arrow: SW : State 0 EVENT: bp#varbp=0.00 ACT : SendToHTTP 192.168.1.100,8080,/json.htm?param=switchlight&type=command&i...
by toffel969
05 Mar 2018, 13:51
Forum: ESP Easy: Hardware
Topic: Sonoff Basic + wall push button with pilot light
Replies: 21
Views: 16685

Re: Sonoff Basic + wall push button with pilot light

Use the internal pull-up for GPIO14 ? Or Use a pull-up resistor of 100K for GPIO14 to 3V3? I enabled internal pull-up, it won't help, however without it things are much worse, switch goes off randomly even when wires are not connected to led and I touch them with bare hand. Would you elaborate on c...
by toffel969
02 Mar 2018, 20:07
Forum: ESP Easy: General Discussion
Topic: esp8266 pulse swits to domoticz
Replies: 16
Views: 9077

Re: esp8266 pulse swits to domoticz

grovkillen wrote: 02 Mar 2018, 19:34 Yeah, at least if a switch plugin is enabled...?
What's the advantage of the longer delay?
by toffel969
02 Mar 2018, 19:11
Forum: ESP Easy: General Discussion
Topic: esp8266 pulse swits to domoticz
Replies: 16
Views: 9077

Re: esp8266 pulse swits to domoticz

grovkillen wrote: 02 Mar 2018, 14:48 On advanced page, set the message delay from 1000 to 100 and test if the same happens.
So many people have problems with this. Would it not be a good idea to lower the default msg delay to 100 msec in src, what do you think?
by toffel969
02 Mar 2018, 19:08
Forum: ESP Easy: Projects / Applications
Topic: Check a switch
Replies: 4
Views: 3989

Re: Check a switch

Please post Screenshots of the switch input device and a photo of the breadboard
by toffel969
01 Mar 2018, 16:31
Forum: ESP Easy: General Discussion
Topic: Wi Fi connection
Replies: 2
Views: 2252

Re: Wi Fi connection

Hello, I changed the telephone operator and I completely forgot to change the setting of my sonoff connections in advance with esp mega. Now I'm no longer able to log in even if I know the password but with the new hub I can not log in. Is there any other possibility to connect again or do I have t...
by toffel969
01 Mar 2018, 16:18
Forum: ESP Easy: Hardware
Topic: ESPEasy servo controlled blinds
Replies: 2
Views: 4591

Re: ESPEasy servo controlled blinds

check the other thread, waspie posted the answer to your question there
by toffel969
01 Mar 2018, 16:17
Forum: ESP Easy: Software
Topic: Release/Stop Driving Servo?
Replies: 20
Views: 15972

Re: Release/Stop Driving Servo?

thx
by toffel969
01 Mar 2018, 15:56
Forum: ESP Easy: Software
Topic: Release/Stop Driving Servo?
Replies: 20
Views: 15972

Re: Release/Stop Driving Servo?

waspie wrote: 01 Mar 2018, 15:44 edited the servo file to detach after 2 seconds. works perfectly.
Which file (name of the ino) and what source code has been changed ?
by toffel969
01 Mar 2018, 11:32
Forum: ESP Easy: Projects / Applications
Topic: Writing custom rules and compile them
Replies: 21
Views: 16470

Re: Writing custom rules and compile them

But my original question remains: Is it possible to write rules in the original code and compile them? No, not really but its fairly easy to upload them... Please explain more what you really want to do. My flash wrapper tool can do it for you. Hi, no I haven't been clear. I want to write rules mor...
by toffel969
01 Mar 2018, 09:20
Forum: ESP Easy: Software
Topic: Release/Stop Driving Servo?
Replies: 20
Views: 15972

Re: Release/Stop Driving Servo?

Simply power servo through transistor driven by another gpio pin and switch power off, when servo is not driven to move. But servo can move under some force then, because it is not held in its position by motor force. Sure thats a way to do it, but I think there must be a software fix too using the...
by toffel969
28 Feb 2018, 18:18
Forum: ESP Easy: Hardware
Topic: ESPEasy servo controlled blinds
Replies: 2
Views: 4591

Re: ESPEasy servo controlled blinds

There is probably a work around in software, I asked vader to elaborate on detaching in this old thread viewtopic.php?f=6&t=3329&p=25263#p25263
by toffel969
28 Feb 2018, 18:16
Forum: ESP Easy: Software
Topic: Release/Stop Driving Servo?
Replies: 20
Views: 15972

Re: Release/Stop Driving Servo?

I'm not sure if it is a real issue. The servos just do what they have to do: Keep the set position. But do they change position if you go to 0% duty-cycle? Other change could be to set an upper and lower limit on the allowed PWM value. I haven't tried it yet. For my purposes I detached the servo fr...
by toffel969
28 Feb 2018, 13:03
Forum: ESP Easy: General Discussion
Topic: Timing - general question
Replies: 5
Views: 4086

Re: Timing - general question

Thanks, I will try this evening. Isn t the delay, if the devices are directly reporting to mqtt? Do they report always in the delay frequency or only if the value has changed? This I couldn t extract from the forum topics nor the description in letscontrolit ... I send the msg in the rules with pub...
by toffel969
28 Feb 2018, 10:50
Forum: ESP Easy: General Discussion
Topic: Timing - general question
Replies: 5
Views: 4086

Re: Timing - general question

First question would be the setting on message delay in advanced tab. Standard is 1000msec. Try to lower it to 10 or 100. This gave me acceptable switching times. Its still not immediate, but fast enough to feel responsive
by toffel969
27 Feb 2018, 16:55
Forum: ESP Easy: Software
Topic: rules sending data
Replies: 14
Views: 15915

Re: rules sending data

Hello thank you for all your help I donated the SendToHTTP which does not return info to domoticz. here is the configuration: the dummy sensor that receives datas serie https://www.letscontrolit.com/forum/download/file.php?mode=view&id=2071 the dummy sensor that sends to domoticz https://www.le...
by toffel969
27 Feb 2018, 16:14
Forum: ESP Easy: Software
Topic: ESP Easy and Arduino serial Link
Replies: 2
Views: 3299

Re: ESP Easy and Arduino serial Link

Hi

Check this out:

http://www.letscontrolit.com/forum/view ... f=2&t=4884

This could be a way.

Just another question, why don' t you use the ADC of the ESP directly?
by toffel969
27 Feb 2018, 13:15
Forum: ESP Easy: Hardware
Topic: New ESP gadget
Replies: 326
Views: 727682

Re: New ESP gadget

Always remember Ruskin's rule: "There is hardly anything in the world that someone cannot make a little worse and sell a little cheaper, and the people who consider price alone are that person's lawful prey. It's unwise to pay too much, but it's worse to pay too little. When you pay too much, ...
by toffel969
27 Feb 2018, 13:12
Forum: ESP Easy: Hardware
Topic: Sonoff Basic + wall push button with pilot light
Replies: 21
Views: 16685

Re: Sonoff Basic + wall push button with pilot light

I have touched legs of led with wires, coming from sonoff and led surprisingly worked, so maybe there is no need to attach additional resistors. However, I wonder if connected led will somehow affect how espeasy reads signal from push-button, wouldn't it think that button is always pressed? Hi What...
by toffel969
26 Feb 2018, 14:56
Forum: ESP Easy: Software
Topic: rules sending data
Replies: 14
Views: 15915

Re: rules sending data

Then using fixed ip with exception in domoticz for that ip seems an option
by toffel969
26 Feb 2018, 11:26
Forum: ESP Easy: Projects / Applications
Topic: tx rx serial plugin
Replies: 9
Views: 12513

Re: tx rx serial plugin

I’m very curious on how your code on the Arduino looks like. In the past, I have tried to exchange data via the serial interface (TxD & RxD) between ESP and Arduino core. But in my experiences with serial code exchange between the Arduino and ESP modules, this gave a lot of overhead on the ESP ...