Search found 3621 matches

by grovkillen
27 Nov 2020, 06:46
Forum: ESP Easy: Software
Topic: Arithmetic in GPIO command with dummy values [solved]
Replies: 5
Views: 9673

Re: Arithmetic with dummy values

Code: Select all

gpio 0,(1-[CFG#inv0])
gpio 2,[CFG#inv0]
by grovkillen
26 Nov 2020, 21:59
Forum: ESP Easy: Hardware
Topic: Co2 Sensor Telaire Т6703
Replies: 2
Views: 11231

Re: Co2 Sensor Telaire Т6703

Wow, that's an ancient sensor :o
by grovkillen
23 Nov 2020, 20:13
Forum: ESP Easy: Software
Topic: Turning an S8 ABC off
Replies: 9
Views: 16910

Re: Turning an S8 ABC off

We're not officially allowing for turning it off. But it's easy to do in the official application from SenseAir. https://senseair.com/media/2001/uip5_0_0_3_40_setup.exe The reason is that it have done more harm than good when it's too easy to do. But if you know why you're turning it off then the ex...
by grovkillen
05 Nov 2020, 20:32
Forum: ESP Easy: Software
Topic: Rules for bathroom ventilation
Replies: 7
Views: 19786

Re: Rules for bathroom ventilation

On System#Boot Do Let,1,0 EndOn On Humidity#Level>65 Do If [Light#Lux]>100 TimerSet,2,30 Else Event,FanOn EndIf EndOn On Light#Lux>100 Do Event,FanOn EndOn On FanOn Do GPIO,0,1 TimerSet,1,300 EndOn On Rules#Timer=1 Do GPIO,0,0 EndOn On Rules#Timer=2 Do Event,FanOn EndOn
by grovkillen
03 Nov 2020, 14:19
Forum: ESP Easy: Hardware
Topic: Co2 Sensor
Replies: 6
Views: 16064

Re: Co2 Sensor

I could sell the S8 sensor for 5% on my shop (linked above). Or you can email me on jimmy@grovkillen.com

I got my price confirmed and I could sell it to you for the same price as the regular one: https://firstbyte.shop/products/s8
by grovkillen
02 Nov 2020, 20:11
Forum: ESP Easy: Hardware
Topic: Co2 Sensor
Replies: 6
Views: 16064

Re: Co2 Sensor

Yep that's Henry's law. And for the S8 for 5% readings i could probably sell it to you. Let me investigate the price for those.

https://firstbyte.shop/

That's the official online shop that me and TD-er are selling hardware through.
by grovkillen
02 Nov 2020, 12:22
Forum: ESP Easy: Hardware
Topic: Co2 Sensor
Replies: 6
Views: 16064

Re: Co2 Sensor

You can get the waters co2 level by having a sensor in a "diving bell". But inside the bell it'll be very humid and thus ruining the measurements. If you find a way of removing that humidity you essentially have a PH sensor for the water. Silica gel is possible to use for testing purposes ...
by grovkillen
14 Oct 2020, 08:19
Forum: Staff Announcements forum
Topic: BIG announcement, the future of ESP Easy. [READ THIS IF YOU LOVE OUR FW]
Replies: 105
Views: 1434528

Re: BIG announcement, the future of ESP Easy. [READ THIS IF YOU LOVE OUR FW]

I cannot agree more with TD-er. Since I'm the frontend developer (and he's the backend developer) I have a bit different "work day": Building digital workflows for companies. Some sensor for data collection for these companies Improving the GUI engine (which is ready for released once we'v...
by grovkillen
22 Sep 2020, 09:50
Forum: Staff Announcements forum
Topic: BIG announcement, the future of ESP Easy. [READ THIS IF YOU LOVE OUR FW]
Replies: 105
Views: 1434528

Re: BIG announcement, the future of ESP Easy. [READ THIS IF YOU LOVE OUR FW]

I'm glad you guys are eager. The 2.1 needs to be out of the box before I will interfere with my GUI :)

And I do still have to get some money paying my bills so extra "here and there" jobs are still important = takes the time off of fun stuff.
by grovkillen
08 Aug 2020, 20:24
Forum: ESP Easy: General Discussion
Topic: mqtt rule - help needed
Replies: 15
Views: 13546

Re: mqtt rule - help needed

Code: Select all

On Rules#Timer=1 Do
....
EndOn
You need to act on the event.
by grovkillen
06 Aug 2020, 13:54
Forum: Staff Announcements forum
Topic: BIG announcement, the future of ESP Easy. [READ THIS IF YOU LOVE OUR FW]
Replies: 105
Views: 1434528

Re: BIG announcement, the future of ESP Easy. [READ THIS IF YOU LOVE OUR FW]

I'm planning on pick this up soon. I'm gonna ask TD-er admit his view on this.
by grovkillen
05 Aug 2020, 19:00
Forum: ESP Easy: General Discussion
Topic: Timer adds additional 1 second delay
Replies: 13
Views: 12228

Re: Timer adds additional 1 second delay

R120 is super old. Use the latest version instead.
by grovkillen
30 Jul 2020, 06:33
Forum: ESP Easy: General Discussion
Topic: Can't install on Windows 10
Replies: 5
Views: 9344

Re: Can't install on Windows 10

Do you use the flasher tool?
by grovkillen
30 Jul 2020, 05:29
Forum: ESP Easy: Projects / Applications
Topic: Keep highest en lowest value in dummy via rules
Replies: 4
Views: 17099

Re: Keep highest en lowest value in dummy via rules

Yes it's a known bug. We're working on a fix.
by grovkillen
29 Jul 2020, 12:02
Forum: ESP Easy: Projects / Applications
Topic: Keep highest en lowest value in dummy via rules
Replies: 4
Views: 17099

Re: Keep highest en lowest value in dummy via rules

On TaskName#ValueName Do If [TaskName#ValueName] > [DummyTask#DummyValueHighest] TaskValueSet,<DummyTaskNummer>,<DummyValueNumberHigh>,[TaskName#ValueName] EndIf If [TaskName#ValueName] < [DummyTask#DummyValueLowest] TaskValueSet,<DummyTaskNummer>,<DummyValueNumberLow>,[TaskName#ValueName] EndIf En...
by grovkillen
09 Jul 2020, 18:47
Forum: ESP Easy: Hardware
Topic: Support for PZEM 004T Energy monitor
Replies: 309
Views: 6009871

Re: Support for PZEM 004T Energy monitor

Could you show how you have mounted it, over one wire? Or else the net sum will always be zero.
by grovkillen
07 Jul 2020, 14:31
Forum: ESP Easy: General Discussion
Topic: Log: Tail possible
Replies: 9
Views: 10616

Re: Log: Tail possible

You could use a computer with tftpd64 as a standalone exe which serves as a log server:

https://github.com/peacepenguin/tftpd64/releases
by grovkillen
05 Jul 2020, 19:56
Forum: ESP Easy: Software
Topic: how to upload easyGUI
Replies: 5
Views: 11029

Re: how to upload easyGUI

The browser need to have the correct header or else it will treat it as a regular file. That is sent by the ESP. And as TD-er said, make sure it's named correctly.
by grovkillen
05 Jul 2020, 16:17
Forum: ESP Easy: Software
Topic: how to upload easyGUI
Replies: 5
Views: 11029

Re: how to upload easyGUI

Modern browsers handle the compression on the fly. So you don't have to really care about that in terms of the MCUs.

The GUI you're trying to upload is the new GUI I'm working on? Those aren't ready yet, we're gonna implement it into the official build once we got the 2.1 out into the wild.
by grovkillen
01 Jul 2020, 15:57
Forum: ESP Easy: General Discussion
Topic: MQTT Import - Client ID Problem
Replies: 11
Views: 12560

Re: MQTT Import - Client ID Problem

It's using the same settings as the controller right?
by grovkillen
23 Jun 2020, 14:28
Forum: ESP Easy: General Discussion
Topic: rules and variables
Replies: 3
Views: 8493

Re: rules and variables

The variables are global so to speak but from the start they are set to zero. If you use conditions based on this value you should set the variables to a bogus value at first.
by grovkillen
19 Jun 2020, 17:19
Forum: Introduce yourself
Topic: Hello from Germany
Replies: 1
Views: 9178

Re: Hello from Germany

Wow! Please do!
by grovkillen
18 Jun 2020, 05:49
Forum: ESP Easy: Software
Topic: Intigrating ESP Easy to Cayenne
Replies: 20
Views: 18155

Re: Intigrating ESP Easy to Cayenne

It's only visual, it should work.
by grovkillen
17 Jun 2020, 12:07
Forum: ESP Easy: Software
Topic: Intigrating ESP Easy to Cayenne
Replies: 20
Views: 18155

Re: Intigrating ESP Easy to Cayenne

Try the open hab one.
by grovkillen
16 Jun 2020, 21:55
Forum: ESP Easy: Projects / Applications
Topic: ESPEasyRV Electronical Upgrade of a Motorhome
Replies: 65
Views: 100331

Re: ESPEasyRV Electronical Upgrade of a Motorhome

Thanks for the feedback, much appreciated!
by grovkillen
16 Jun 2020, 21:02
Forum: ESP Easy: Software
Topic: Rules for bathroom ventilation
Replies: 7
Views: 19786

Re: Rules for bathroom ventilation

Never use delay, it's blocking. On System#Boot Do Let,1,0 EndOn On Humidity#Level>65 Do Event,FanOn EndOn On Light#Lux>100 Do Event,FanOn EndOn On FanOn Do GPIO,0,1 TimerSet,1,300 EndOn On Rules#Timer=1 Do GPIO,0,0 EndOn This rule will have the fan running until the lux and humidity is below those v...
by grovkillen
16 Jun 2020, 20:55
Forum: ESP Easy: General Discussion
Topic: How to change the AP mode SSID "ESP_Easy_0"
Replies: 2
Views: 8276

Re: How to change the AP mode SSID "ESP_Easy_0"

The SSID is made from the unit name and number. But if you want to make it something completely different you need to compile your custom version.
by grovkillen
16 Jun 2020, 19:08
Forum: ESP Easy: Projects / Applications
Topic: KWH Counter
Replies: 12
Views: 28187

Re: KWH Counter

Your time/interval is 10 seconds that mean that your momentary formula is correct. I have done the same on my energy meter here at home and it work just fine. The only thing I do different is that I have 2 decimals instead of zero... and D3 instead of D5.
by grovkillen
16 Jun 2020, 08:40
Forum: ESP Easy: Hardware
Topic: WIFI : Disconnected! Reason: '(200) Beacon timeout'
Replies: 74
Views: 125415

Re: WIFI : Disconnected! Reason: '(200) Beacon timeout'

If you flash a blank you're writing only zeroes = as clean as can possibly be.
by grovkillen
13 Jun 2020, 15:06
Forum: ESP Easy: General Discussion
Topic: "Generic - MQTT Import" problem
Replies: 4
Views: 9980

Re: "Generic - MQTT Import" problem

The message should be a simple numerical value.

Code: Select all

123.456
by grovkillen
11 Jun 2020, 12:31
Forum: ESP Easy: Software
Topic: ESP8266 rapport erreur Plugin _P127_Teleinfo
Replies: 31
Views: 22104

Re: ESP8266 rapport erreur Plugin _P127_Teleinfo

Please post in English for the rest of the world to read...
by grovkillen
09 Jun 2020, 21:21
Forum: ESP Easy: Software
Topic: Rule send mail delay
Replies: 1
Views: 12769

Re: Rule send mail delay

What version are you using and what have you got so for (post your rule).
by grovkillen
07 Jun 2020, 14:32
Forum: ESP Easy: General Discussion
Topic: syntax question
Replies: 27
Views: 28210

Re: syntax question

Yep, since you're not using device/task those square brackets are referring to something that isn't existing. Ath's approach is the one to go.
by grovkillen
07 Jun 2020, 13:29
Forum: ESP Easy: General Discussion
Topic: syntax question
Replies: 27
Views: 28210

Re: syntax question

Could you look into the log when you have this rule triggered? And add the event values to log entry just to see if they are correct.
by grovkillen
07 Jun 2020, 12:57
Forum: ESP Easy: General Discussion
Topic: syntax question
Replies: 27
Views: 28210

Re: syntax question

The thing is that you probably have both 18 and 17 change at the same time, thus I'm not sure what state your rule is triggering. I would test this: on mcp#18 do Event,triggering=[MCP#18],[MCP#17],[MCP#29] endon on mcp#17 do Event,triggering=[MCP#18],[MCP#17],[MCP#29] endon on triggering do if %even...
by grovkillen
06 Jun 2020, 15:53
Forum: ESP Easy: General Discussion
Topic: syntax question
Replies: 27
Views: 28210

Re: syntax question

Do you have monitor activated for them?
by grovkillen
30 May 2020, 21:26
Forum: ESP Easy: Hardware
Topic: GPS#Travelled already included? [SOLVED]
Replies: 13
Views: 22119

Re: GPS#Travelled already included?

That would be GitHub
by grovkillen
25 May 2020, 20:04
Forum: ESP Easy: Software
Topic: Only 3 of 4 possible Counters are functional
Replies: 12
Views: 17674

Re: Only 3 of 4 possible Counters are functional

I suspect the pulse is "high", thus you want it to be pulled down. Or is the pulse low in your application?
by grovkillen
25 May 2020, 15:23
Forum: ESP Easy: Software
Topic: Variables in TimerSet
Replies: 2
Views: 8435

Re: Variables in TimerSet

You must declare the variables inside an event block! Use the system#boot for that.
by grovkillen
25 May 2020, 15:22
Forum: ESP Easy: Software
Topic: Only 3 of 4 possible Counters are functional
Replies: 12
Views: 17674

Re: Only 3 of 4 possible Counters are functional

Tired to make your own pull down?
by grovkillen
25 May 2020, 14:39
Forum: ESP Easy: Software
Topic: Only 3 of 4 possible Counters are functional
Replies: 12
Views: 17674

Re: Only 3 of 4 possible Counters are functional

On what task numbers do you have the non-working counter vs. working counters?
by grovkillen
25 May 2020, 07:10
Forum: Introduce yourself
Topic: Hello from Bristol, UK
Replies: 10
Views: 15376

Re: Hello from Bristol, UK

Thanks for the feedback.
by grovkillen
23 May 2020, 19:52
Forum: ESP Easy: General Discussion
Topic: HTTP get command for sensor value
Replies: 32
Views: 37239

Re: HTTP get command for sensor value

First run a "taskrun" command and you will have the latest value.
by grovkillen
21 May 2020, 09:43
Forum: ESP Easy: Software
Topic: disable onboard blue LED on D1 mini
Replies: 2
Views: 9897

Re: disable onboard blue LED on D1 mini

Worst case, desolder it. But have you tried:

Code: Select all

On System#Boot Do
 GPIO,2,1
EndOn
Please be aware that setting it to high will make it turn off.
by grovkillen
20 May 2020, 16:49
Forum: ESP Easy: General Discussion
Topic: Rules using 'OR"
Replies: 50
Views: 124330

Re: Rules using 'OR"

Try this (GPIO 14 just as an example):

Code: Select all

On switch1#State do
GPIO,14,[switch1#State#Z]
endon
Or inverted:

Code: Select all

On switch1#State do
GPIO,14,[switch1#State#!Z]
endon
by grovkillen
20 May 2020, 11:04
Forum: ESP Easy: General Discussion
Topic: Rules using 'OR"
Replies: 50
Views: 124330

Re: Rules using 'OR"

What version?
by grovkillen
20 May 2020, 10:58
Forum: ESP Easy: Software
Topic: MQTT complicated in espeasy
Replies: 3
Views: 9262

Re: MQTT complicated in espeasy

Thanks