Search found 3621 matches

by grovkillen
29 Aug 2017, 22:18
Forum: ESP Easy: Hardware
Topic: Issue with MH-Z19 sensor !!
Replies: 13
Views: 11253

Re: Issue with MH-Z19 sensor !!

The wiki started (wrongfully) 3.3V, I have now fixed it (5V).

The logics are 3.3V based though, no level converter is needed.

Thanks Lisa!
by grovkillen
29 Aug 2017, 10:36
Forum: ESP Easy: General Discussion
Topic: Wifi-Login Behaviour
Replies: 1
Views: 1555

Re: Wifi-Login Behaviour

The ESP Easy is programmed to "give up" after 3 tries to connect. After that you need to do a reconnect "manually". This is easily done using rules which you set to connect the wifi back online in the morning. I haven't tried this code since I don't use this feature myself but he...
by grovkillen
29 Aug 2017, 09:31
Forum: ESP Easy: General Discussion
Topic: need help in rules
Replies: 7
Views: 5985

Re: need help in rules

I have tried this but does not work on lock#Switch do if [lock#Switch]=0 NeoPixelAll,0,0,255 timerSet 1,30 // 30 sec timer endon on Rules#Timer=1 do NeoPixelAll,0,0,0 endif endon Almost nailed it: on lock#Switch do if [lock#Switch]=0 NeoPixelAll,0,0,255 timerSet 1,30 // 30 sec timer endif endon on ...
by grovkillen
29 Aug 2017, 06:43
Forum: ESP Easy: General Discussion
Topic: Saving Timing Value on Variable
Replies: 1
Views: 2318

Re: Saving Timing Value on Variable

As far as I know this is not possible. But you might want to use two timers, one that update the display each second and the other one is the real timer.
by grovkillen
28 Aug 2017, 22:59
Forum: ESP Easy: Software
Topic: How to measure speed of three air fans?
Replies: 24
Views: 19870

Re: How to measure speed of three air fans?

So what is the the problem?
by grovkillen
28 Aug 2017, 22:54
Forum: ESP Easy: General Discussion
Topic: need help in rules
Replies: 7
Views: 5985

Re: need help in rules

Is your device named "GPIO13" and it's value named "value"?
by grovkillen
28 Aug 2017, 17:54
Forum: ESP Easy: Software
Topic: How to measure speed of three air fans?
Replies: 24
Views: 19870

Re: How to measure speed of three air fans?

Sorry if I come across as ignorant but have you tried the "Delta" as "counter type" and the delay set to "60"? Since you're able to test the rpm with external tachometer you can test and see if the pulses from the ESP Easy matches those numbers. Use debounce time to man...
by grovkillen
26 Aug 2017, 10:02
Forum: ESP Easy: General Discussion
Topic: Dallas not working any more
Replies: 6
Views: 5378

Re: Dallas not working any more

Out of 10 DS18b20 one had failed. This happened after approx 4 month of operation. The ID was (as previously stated) not in the list anymore. I just removed the device and replaced it with a new one. The cheap price makes any attempt of resurrecting the device not worth it, at least that's what I th...
by grovkillen
25 Aug 2017, 14:19
Forum: ESP Easy: Hardware
Topic: v2.0.0-dev11: two INA219 Devices get the same address
Replies: 8
Views: 7829

Re: v2.0.0-dev11: two INA219 Devices get the same address

Please file an report on the GitHub for this. I can do it if you don't want to.
by grovkillen
25 Aug 2017, 09:45
Forum: Experimental
Topic: What are the factors that affect speed?
Replies: 10
Views: 19454

Re: What are the factors that affect speed?

Devices is a misleading wording, it is the number of PLUGINs that are in the firmware. If you would flash the unit with some other version the number would be different.

On my 2.0.0-dev7[normal] I have 44 "devices".
by grovkillen
25 Aug 2017, 06:16
Forum: ESP Easy: General Discussion
Topic: Adding rules and button to MQTT activated relay
Replies: 1
Views: 3179

Re: Adding rules and button to MQTT activated relay

Code: Select all

On button#state do
 if [button#state]=0 
   gpio,16,1
   publish,Esp2/relay/state,1
 else
   gpio,16,0
   publish,Esp2/relay/state,0
 endif
endon
You can have the name of the device by adding this to the publish line:
%sysname%/relay/state,0
by grovkillen
24 Aug 2017, 19:01
Forum: ESP Easy: Software
Topic: How to measure speed of three air fans?
Replies: 24
Views: 19870

Re: How to measure speed of three air fans?

Debounce 1mSec is not recommended. Try something between 100mSec and 500mSec (I generally work my way down from 500mSec until I find a good value).

The time is whatever you set as delay. You need to make that 60 if you want it to be rpMINUTES.
by grovkillen
24 Aug 2017, 18:26
Forum: ESP Easy: Software
Topic: Sonoff programming in bulk
Replies: 3
Views: 2838

Re: Sonoff programming in bulk

You would want to use MQTT for that. Search the forum and you'll find many uses of the plugin MQTT Import.

A more generic way might be on the horizon though:
https://github.com/letscontrolit/ESPEasy/issues/378
by grovkillen
24 Aug 2017, 10:53
Forum: ESP Easy: General Discussion
Topic: Turn off i2c sensor when esp is in deep sleep
Replies: 13
Views: 15277

Re: Turn off i2c sensor when esp is in deep sleep

... By the way, i am using that kind of battery shield, which works very well https://www.aliexpress.com/item/Wemos-18650-Battery-shield-V3-RaspberryPi-Arduino/32814189613.html?spm=2114.search0104.3.25.AsSW5I&ws_ab_test=searchweb0_0,searchweb201602_5_10152_10065_10151_10068_5430020_5410020_1030...
by grovkillen
24 Aug 2017, 08:24
Forum: ESP Easy: General Discussion
Topic: ESP easy on son off
Replies: 13
Views: 9453

Re: ESP easy on son off

Which chipset are you flashing (8266 or 8285)?
by grovkillen
24 Aug 2017, 06:12
Forum: ESP Easy: General Discussion
Topic: Turn off i2c sensor when esp is in deep sleep
Replies: 13
Views: 15277

Re: Turn off i2c sensor when esp is in deep sleep

LisaM wrote: 23 Aug 2017, 22:49 A Relay??? Doesn't that eat a LOT of precious power?
Yes you are right but that depends on the battery. Here's a low power consumption relay: http://www.azettler.com/ultra-low-power ... lications/
by grovkillen
23 Aug 2017, 18:32
Forum: ESP Easy: General Discussion
Topic: Turn off i2c sensor when esp is in deep sleep
Replies: 13
Views: 15277

Re: Turn off i2c sensor when esp is in deep sleep

You can always use a relay that cut the incoming current to the sensor(s).
by grovkillen
23 Aug 2017, 06:50
Forum: ESP Easy: Software
Topic: Dimming and a rotary-encoder
Replies: 8
Views: 7524

Re: Dimming and a rotary-encoder

Since max value is set to 100 and I multiply each step with 10, the final sum will be 1000.
by grovkillen
22 Aug 2017, 19:24
Forum: ESP Easy: Software
Topic: Dimming and a rotary-encoder
Replies: 8
Views: 7524

Re: Dimming and a rotary-encoder

I have not tested this code myself but this is how I would do it. LED on GPIO12 (D6). Rotary Encoder with max value 100 and min value 0 , the device named "rotary" and the value named "count". on rotary#count do pwm,12,[rotary#count]*10 //if you want the max value to be 1000 endo...
by grovkillen
22 Aug 2017, 10:24
Forum: ESP Easy: Hardware
Topic: Sensair S8
Replies: 118
Views: 98788

Re: Sensair S8

Stick together. 8-)
by grovkillen
22 Aug 2017, 10:14
Forum: ESP Easy: Hardware
Topic: Sensair S8
Replies: 118
Views: 98788

Re: Sensair S8

manjh wrote: 22 Aug 2017, 09:45 You know how it is, once you find a workaround you leave it at that. :x
I do know :) That's why I asked. :geek:
by grovkillen
22 Aug 2017, 09:43
Forum: ESP Easy: Software
Topic: ESPEasy R120 Rules - [need help]
Replies: 10
Views: 8679

Re: ESPEasy R120 Rules - [need help]

Regarding line indent, case-sensitive are no problem, but yes - it is not stated in the wiki. Regarding the rule asked for here: on touch#switch do if [count#state]>1 TaskValueSet,4,1,0 else TaskValueSet,4,1,[count#state]+1 endif endon on count#state=0 do gpio,1,0 gpio,2,0 endon on count#state=1 do ...
by grovkillen
22 Aug 2017, 06:29
Forum: ESP Easy: Hardware
Topic: Sensair S8
Replies: 118
Views: 98788

Re: Sensair S8

Thanks for a great review. Regarding the air quality device in Domoticz, can't you add a rule instead of using a script?

https://www.domoticz.com/wiki/Domoticz_ ... ir_quality

https://www.letscontrolit.com/wiki/inde ... th_own_IDX
by grovkillen
21 Aug 2017, 13:32
Forum: Experimental
Topic: ESP Easy Mega
Replies: 249
Views: 726175

Re: ESP Easy Mega

Ah.... good for you, sounds like a very interesting company to work for! It is and Senseair is really impressed with the ESP Easy initiative. Thanks to the developers a "noob" can get a S8 sensor up and running (reporting to the rest of the world) in less than an hour! I agree. Setting it...
by grovkillen
21 Aug 2017, 08:42
Forum: ESP Easy: Hardware
Topic: Issue with MH-Z19 sensor !!
Replies: 13
Views: 11253

Re: Issue with MH-Z19 sensor !!

As it seems that you have wired it correctly and also the settings seems fine I'd like to try another sensor instead of starting to turn more stones.
by grovkillen
21 Aug 2017, 08:29
Forum: ESP Easy: Hardware
Topic: Issue with MH-Z19 sensor !!
Replies: 13
Views: 11253

Re: Issue with MH-Z19 sensor !!

And you are sure the sensor is not broken?
by grovkillen
20 Aug 2017, 09:00
Forum: ESP Easy: Projects / Applications
Topic: Connection lost, Connected to broker
Replies: 11
Views: 8708

Re: Connection lost, Connected to broker

Other ESP Easy units connected to the same broker? Are the working all right?
by grovkillen
20 Aug 2017, 07:57
Forum: ESP Easy: Projects / Applications
Topic: Connection lost, Connected to broker
Replies: 11
Views: 8708

Re: Connection lost, Connected to broker

Ok, no problem there. What else is connected?
by grovkillen
20 Aug 2017, 00:21
Forum: ESP Easy: Projects / Applications
Topic: Connection lost, Connected to broker
Replies: 11
Views: 8708

Re: Connection lost, Connected to broker

What pin did you switch to (from the malfunction GPIO 12)?
by grovkillen
19 Aug 2017, 23:20
Forum: ESP Easy: Projects / Applications
Topic: Connection lost, Connected to broker
Replies: 11
Views: 8708

Re: Connection lost, Connected to broker

That happens from time to time. If it is able to reconnect I wouldn't worry about it. But as you experience problem, what is the RSSI level of the WiFi?
by grovkillen
19 Aug 2017, 18:55
Forum: ESP Easy: Software
Topic: ESP Easy MQTT ARRAYs
Replies: 2
Views: 3155

Re: ESP Easy MQTT ARRAYs

If you want to create custom MQTT messages:

https://www.letscontrolit.com/wiki/inde ... th_own_IDX

But I would not use the Domoticz settings if I don't connect to a Domoticz controller.
by grovkillen
18 Aug 2017, 16:18
Forum: ESP Easy: Hardware
Topic: INA219 wiring
Replies: 8
Views: 5014

Re: INA219 wiring

I see it as a lesson learned. :geek: ;)
by grovkillen
18 Aug 2017, 07:22
Forum: ESP Easy: Projects / Applications
Topic: How to press a button for Garage Door?
Replies: 31
Views: 29663

Re: How to press a button for Garage Door?

ARGH :evil: ( ;) )

This is the first step you take when trying to find the problem. :)
by grovkillen
18 Aug 2017, 07:19
Forum: Experimental
Topic: ESP Easy Mega
Replies: 249
Views: 726175

Re: ESP Easy Mega

@grovkillen will forward this to the electro-engineers! And what about a Wemos Shield ? Instead of this https://www.letscontrolit.com/wiki/images/thumb/5/58/S8_003.jpg/773px-S8_003.jpg And thanks for all your wiki contributions (Shardan too!) Thank you for the feedback! :) Regarding the non-shield ...
by grovkillen
17 Aug 2017, 22:12
Forum: ESP Easy: Hardware
Topic: INA219 wiring
Replies: 8
Views: 5014

Re: INA219 wiring

Then:

Code: Select all

Vin+ <----> Vin (ESP)
Vin- <----> Gnd (ESP)
Just as you would measure it with a multimeter.
by grovkillen
17 Aug 2017, 14:18
Forum: ESP Easy: Hardware
Topic: INA219 wiring
Replies: 8
Views: 5014

Re: INA219 wiring

What do you mean exactly?
by grovkillen
17 Aug 2017, 10:01
Forum: ESP Easy: Projects / Applications
Topic: ESPeasy control - Android APP
Replies: 14
Views: 18489

Re: ESPEasy Control - Android APP

If you have a MQTT broker you can control any ESP Easy unit with apps like MQTT Dash.
by grovkillen
16 Aug 2017, 20:17
Forum: Experimental
Topic: Round up...
Replies: 5
Views: 14905

Re: Round up...

Wow! Nice feature. But how does the "flip through the nodes" work? Will it fetch values through UDP or what?

*Just being curious*

:geek:
by grovkillen
16 Aug 2017, 14:34
Forum: ESP Easy: Projects / Applications
Topic: How to press a button for Garage Door?
Replies: 31
Views: 29663

Re: How to press a button for Garage Door?

Final(?) wild try of an solution:

Code: Select all

On System#Boot do //When the ESP boots, do
 	TaskValueSet,2,1,0
endon
Could maybe be used in conjunction with a delay?
by grovkillen
16 Aug 2017, 14:27
Forum: ESP Easy: Projects / Applications
Topic: How to press a button for Garage Door?
Replies: 31
Views: 29663

Re: How to press a button for Garage Door?

I just typed that one out of memory, I might have forgotten the "," for the delay. Tired this?

Code: Select all

On System#Boot do //When the ESP boots, do
 	delay,10 // wait for 10 seconds
	gpio,12,0 // Turn off GPIO-12
	delay,5 // wait for another 5 seconds
endon
by grovkillen
16 Aug 2017, 14:10
Forum: ESP Easy: Projects / Applications
Topic: How to press a button for Garage Door?
Replies: 31
Views: 29663

Re: How to press a button for Garage Door?

That is incorrect since you will break out of the boot event with that timer call.

This is what I meant:

Code: Select all

On System#Boot do //When the ESP boots, do
 	delay 10 // wait for 10 seconds
	gpio,12,0 // Turn off GPIO-12
	delay 5 // wait for another 5 seconds
endon
by grovkillen
16 Aug 2017, 13:57
Forum: ESP Easy: Projects / Applications
Topic: How to press a button for Garage Door?
Replies: 31
Views: 29663

Re: How to press a button for Garage Door?

In the "system#boot" event, could you add a delay for lets say 10 seconds (before the gpio,12,0) and see what happens?
by grovkillen
16 Aug 2017, 13:50
Forum: ESP Easy: Software
Topic: ESP8266 and TCR5000
Replies: 4
Views: 3740

Re: ESP8266 and TCR5000

Yes it will spit out what ever count it has between it's reports. 1 second might be to short of a period. But also debounce time has a major impact as well. I have tried to explain it somewhat better here: https://www.letscontrolit.com/wiki/inde ... ogic_input
by grovkillen
16 Aug 2017, 13:25
Forum: Experimental
Topic: ESP Easy Mega
Replies: 249
Views: 726175

Re: ESP Easy Mega

Ah.... good for you, sounds like a very interesting company to work for! It is and Senseair is really impressed with the ESP Easy initiative. Thanks to the developers a "noob" can get a S8 sensor up and running (reporting to the rest of the world) in less than an hour! I agree. Setting it...