Search found 8749 matches

by TD-er
15 Dec 2020, 00:02
Forum: ESP Easy: General Discussion
Topic: Rules and Tones on older build
Replies: 48
Views: 28320

Re: Rules and Tones on older build

And the names are changed for the pending PR.
https://github.com/letscontrolit/ESPEas ... 3427/files#
by TD-er
14 Dec 2020, 23:58
Forum: ESP Easy: General Discussion
Topic: Rules and Tones on older build
Replies: 48
Views: 28320

Re: Rules and Tones on older build

See the pending PR: https://github.com/letscontrolit/ESPEas ... 8d1e025R15

But I can also change them and add it to the PR.

N.B. "UV" should remain in caps.
by TD-er
14 Dec 2020, 23:56
Forum: ESP Easy: Software
Topic: ESP32 custom build fails
Replies: 14
Views: 8845

Re: ESP32 custom build fails

Looking forward to the PR :)
by TD-er
14 Dec 2020, 22:02
Forum: ESP Easy: General Discussion
Topic: Rules and Tones on older build
Replies: 48
Views: 28320

Re: Rules and Tones on older build

OK, that's probably a simple fix.
Will make a change and a test build. (try to have one before midnight :) )
by TD-er
14 Dec 2020, 19:05
Forum: ESP Easy: Software
Topic: ESP32 custom build fails
Replies: 14
Views: 8845

Re: ESP32 custom build fails

Yep, the error suggests a wrong amount of parameters and a space is generally used as a parameter-separator :)
by TD-er
14 Dec 2020, 19:02
Forum: ESP Easy: General Discussion
Topic: Rules and Tones on older build
Replies: 48
Views: 28320

Re: Rules and Tones on older build

As far as I know is the BSEC library only available as binary blob.
But I will read your links.

Edit:
The are static linked binary blobs. See: https://github.com/BoschSensortec/BSEC- ... rc/esp8266
by TD-er
14 Dec 2020, 17:21
Forum: ESP Easy: Software
Topic: timer remaining time
Replies: 7
Views: 5979

Re: timer remaining time

Not directly, but you could store the number of seconds of the current day in a variable when setting the timer. Then you can subtract the stored value from the current value of %syssec_d% in an event handler block. By triggering such an event you can output the difference (or store it somewhere lik...
by TD-er
14 Dec 2020, 17:17
Forum: ESP Easy: General Discussion
Topic: rules question - variable not updated?
Replies: 11
Views: 9919

Re: rules question - variable not updated?

I mean, the value for your dummy-var is to large! I think 65535 is the maximum. Edit: I already see, my post is nonsense... Not entirely nonsense... The limit isn't 16 bit, but more like 22 bit as the values are internally treated as floats. So when storing large values you will run into issues cau...
by TD-er
14 Dec 2020, 17:14
Forum: ESP Easy: Software
Topic: ESP32 custom build fails
Replies: 14
Views: 8845

Re: ESP32 custom build fails

And no space in the path anymore?
Still not working?
Previous errors you gave showed a path with a space in them.
by TD-er
14 Dec 2020, 17:03
Forum: ESP Easy: General Discussion
Topic: Rules and Tones on older build
Replies: 48
Views: 28320

Re: Rules and Tones on older build

I can also have a look at what is needed to use the binary blob made by Bosch. Then we can have a tutorial how to build it yourself (as the binary blob must be linked at compile time). I think the AIQ is part of this closed source binary blob if my memory serves me well. Really frustrating they don'...
by TD-er
14 Dec 2020, 16:58
Forum: ESP Easy: Hardware
Topic: Dust Sensor SDS011 Reading too low
Replies: 9
Views: 16763

Re: Dust Sensor SDS011 Reading too low

I think blocking the fan and pressured air may be my first guess to clean it. (reason to block the fan is to prevent high voltage damaging the sensor electronics if the fan starts acting as a dynamo) It all depends on whether the dust was dry or moist. If it became sticky, then you must probably ope...
by TD-er
14 Dec 2020, 09:15
Forum: ESP Easy: Software
Topic: ESP32 custom build fails
Replies: 14
Views: 8845

Re: ESP32 custom build fails

What do you get when opening a terminal and checking the Python version?

For example:

Code: Select all

PS C:\GitHub\TD-er\ESPEasy> python --version
Python 3.7.7

And one other thing I just thought of while writing this reply....
Do you have any space in the path where you have located your code?
by TD-er
14 Dec 2020, 09:12
Forum: ESP Easy: Software
Topic: "watchdog" relay
Replies: 26
Views: 15722

Re: "watchdog" relay

All builds should be able to handle Puya chips as it has been integrated in the esp8266/Arduino core since 2.5.x
by TD-er
14 Dec 2020, 09:01
Forum: ESP Easy: General Discussion
Topic: Rules and Tones on older build
Replies: 48
Views: 28320

Re: Rules and Tones on older build

Done for the typo's. And I have not written the BME680 plugin, I only moved it from the playground as it was apparently working according to some users. Also had to patch it as it wasn't using the set I2C address and also had to adopt it to the more recent changes in the core of ESPEasy. I do know t...
by TD-er
14 Dec 2020, 00:00
Forum: ESP Easy: General Discussion
Topic: Rules and Tones on older build
Replies: 48
Views: 28320

Re: Rules and Tones on older build

I'm still working on making it all fit and the new plugins are not at the "normal" plugin selection. The "test" and "dev" builds have become too large to fit, so I had to disable some parts. But like I said, it is literally taking all my time lately to find a way to mak...
by TD-er
13 Dec 2020, 23:56
Forum: ESP Easy: Software
Topic: ESP32 custom build fails
Replies: 14
Views: 8845

Re: ESP32 custom build fails

I tested with this Config.h (and please remove this _Custom.h file and base it on Custom-sample.h) and it builds just fine. So it must have something to do with the installed packages in your Python virtual environment. The steps to take: - Make sure to run Python 3.8 - uninstall PlatformIO from the...
by TD-er
13 Dec 2020, 21:48
Forum: ESP Easy: General Discussion
Topic: dhcp release / renew?
Replies: 1
Views: 22815

Re: dhcp release / renew?

You can call a WiFi disconnect.
Then it will immediately reconnect and thus do a new DHCP request.
by TD-er
13 Dec 2020, 21:47
Forum: ESP Easy: Software
Topic: ESP32 custom build fails
Replies: 14
Views: 8845

Re: ESP32 custom build fails

Can you attach the Custom.h file (remove any passwords if you set them) so I can test here
by TD-er
13 Dec 2020, 19:42
Forum: ESP Easy: Software
Topic: ESP32 custom build fails
Replies: 14
Views: 8845

Re: ESP32 custom build fails

Have you installed all Python packages in your virtualenv as mentioned in the requirements.txt file? So in your IDE (VS code for example) you open the terminal and in there you run: pip install -r requirements.txt Also what Python version do you have? And what have you changed for your special build...
by TD-er
13 Dec 2020, 19:30
Forum: ESP Easy: Software
Topic: "watchdog" relay
Replies: 26
Views: 15722

Re: "watchdog" relay

Ah build 120, that one is ancient and does not support "monitor" and likely other calls may also not yet work as they do now.

Can you please try a build which isn't like 3 years old?
See: https://github.com/letscontrolit/ESPEasy/releases
by TD-er
13 Dec 2020, 15:38
Forum: ESP Easy: General Discussion
Topic: Rules and Tones on older build
Replies: 48
Views: 28320

Re: Rules and Tones on older build

For now both plugins, not yet the notification.
Still have to make it all fit a bit better.

https://www.dropbox.com/s/klmom5i6ee3sx ... 7.zip?dl=0
https://www.dropbox.com/s/b2ko0frxjw6fe ... 7.zip?dl=0
by TD-er
13 Dec 2020, 01:27
Forum: ESP Easy: General Discussion
Topic: Rules and Tones on older build
Replies: 48
Views: 28320

Re: Rules and Tones on older build

Yep I can include both BME680 and this one.... but not "today" as it is already nearly 1:30 am and my eyes start to itch from sleep :)
by TD-er
12 Dec 2020, 23:22
Forum: ESP Easy: General Discussion
Topic: %eventvalue%
Replies: 9
Views: 9293

Re: %eventvalue%

Wiki wrote: 12 Dec 2020, 23:08 [OT On]
Voyager?
[/OT Off]
Delta quadrant?
I don't get it...
by TD-er
12 Dec 2020, 22:47
Forum: ESP Easy: General Discussion
Topic: Rules and Tones on older build
Replies: 48
Views: 28320

Re: Rules and Tones on older build

BME680 is a pending PR.
Maybe you can test the test builds I linked here: https://github.com/letscontrolit/ESPEasy/pull/3386
by TD-er
12 Dec 2020, 21:57
Forum: ESP Easy: General Discussion
Topic: Rules and Tones on older build
Replies: 48
Views: 28320

Re: Rules and Tones on older build

Are there any plugins that will no longer work?
Or plugins you use from Playground that may be needed to updated to recent code?
by TD-er
12 Dec 2020, 20:38
Forum: ESP Easy: General Discussion
Topic: Rules and Tones on older build
Replies: 48
Views: 28320

Re: Rules and Tones on older build

Why do you need core 2.3.0? And/or a very specific Arduino version?
If memory serves me well, core 2.4.0 was used in ESPEasy around March 2018.
by TD-er
11 Dec 2020, 20:12
Forum: ESP Easy: General Discussion
Topic: %eventvalue%
Replies: 9
Views: 9293

Re: %eventvalue%

They do fit, but you may not be able to perform an OTA update.
by TD-er
11 Dec 2020, 19:56
Forum: ESP Easy: General Discussion
Topic: %eventvalue%
Replies: 9
Views: 9293

Re: %eventvalue%

See this for more recent versions:
https://github.com/letscontrolit/ESPEasy/releases

And where did you find a link to R120?
by TD-er
11 Dec 2020, 19:55
Forum: ESP Easy: Software
Topic: "watchdog" relay
Replies: 26
Views: 15722

Re: "watchdog" relay

See the documentation on the "monitor" command: https://espeasy.readthedocs.io/en/latest/Reference/Events.html?highlight=monitor#internal-core-events on System#Boot do Monitor GPIO,15 endon on GPIO#15=0 do if [Plugin#GPIO#Pinstate#13]=0 // do something endif endon on GPIO#15=1 do if [Plugi...
by TD-er
11 Dec 2020, 14:32
Forum: ESP Easy: Hardware
Topic: PLUGIN USES_P075 Nextion
Replies: 8
Views: 10899

Re: PLUGIN USES_P075 Nextion

The BME680 will soon be included in the normal repository.
Maybe you can also test the linked test builds for the pending PR of that plugin?
https://github.com/letscontrolit/ESPEasy/pull/3386
by TD-er
10 Dec 2020, 22:52
Forum: ESP Easy: Projects / Applications
Topic: ESP-12 Relay Board Strange Behavior
Replies: 7
Views: 16647

Re: ESP-12 Relay Board Strange Behavior

You're welcome.

Maybe you can post some image here with the correct GPIO pins, in case someone else ends up on this topic with the same problem.
by TD-er
10 Dec 2020, 15:59
Forum: ESP Easy: Hardware
Topic: Connecting a Rain Gauge
Replies: 14
Views: 16405

Re: Connecting a Rain Gauge

You can also add some 10k's in series :)
by TD-er
10 Dec 2020, 13:45
Forum: ESP Easy: Hardware
Topic: Connecting a Rain Gauge
Replies: 14
Views: 16405

Re: Connecting a Rain Gauge

The last few months have been more about actually fixing stuff and improving, instead of bug hunting as we have had no idea for quite a long time what was causing issues. So it is not that unlikely supporting the specific ESP32 features will be done in the next few months. For example in the last 2 ...
by TD-er
10 Dec 2020, 11:54
Forum: ESP Easy: Hardware
Topic: Connecting a Rain Gauge
Replies: 14
Views: 16405

Re: Connecting a Rain Gauge

Judging the GPIO pins you use, you seem to be using an ESP32.
The support for pulse counter on ESP32 is still on my todo list as the CPU itself does have hardware support for it which we don't use yet.
This will make it much more reliable.

It sounds like you're picking up noise. Maybe a long cable?
by TD-er
10 Dec 2020, 10:44
Forum: ESP Easy: General Discussion
Topic: ESPeasy and serial commands
Replies: 22
Views: 20281

Re: ESPeasy and serial commands

I do love the elegance of oneliners, but it should not be a goal :) What you can do (in Arduino code) is something like this: String formatted_val(floatvalue,3); String full_text = "Output: #"; full_text.replace("#", formatted_val); Serial.writeln(full_text); But it is more effic...
by TD-er
10 Dec 2020, 10:37
Forum: ESP Easy: Projects / Applications
Topic: ESP-12 Relay Board Strange Behavior
Replies: 7
Views: 16647

Re: ESP-12 Relay Board Strange Behavior

Some of those default states may be determined by pull-up resistors on the board which are needed to boot the ESP into the correct mode. For example GPIO-0 and 2 MUST be pulled up at boot and GPIO-15 MUST be pulled down at boot. See also this page and the links on it: https://espeasy.readthedocs.io/...
by TD-er
10 Dec 2020, 10:30
Forum: ESP Easy: Hardware
Topic: PLUGIN USES_P075 Nextion
Replies: 8
Views: 10899

Re: PLUGIN USES_P075 Nextion

That's exactly what I'm working on. I already bought a build server and have it setup for building the testbuilds I make here, mainly for pull request test builds. My plan is to indeed offer some build service where you can select a set of plugins. If someone else already demanded the same set, you ...
by TD-er
09 Dec 2020, 23:46
Forum: ESP Easy: Hardware
Topic: PLUGIN USES_P075 Nextion
Replies: 8
Views: 10899

Re: PLUGIN USES_P075 Nextion

Just to be sure, the nightly builds are here: https://github.com/letscontrolit/ESPEasy/releases I just looked at the ZIP file: ESPEasy_ESP82xx_mega-20201130.zip Inside the bin directory there are numerous builds with "test" in the name, like: ESP_Easy_mega_20201130_test_ESP8266_4M1M_VCC.bi...
by TD-er
09 Dec 2020, 21:34
Forum: ESP Easy: Hardware
Topic: PLUGIN USES_P075 Nextion
Replies: 8
Views: 10899

Re: PLUGIN USES_P075 Nextion

See this list of plugins: https://espeasy.readthedocs.io/en/lates ... al-plugins
It is in the "testing" builds.
by TD-er
09 Dec 2020, 19:57
Forum: ESP Easy: General Discussion
Topic: sonoff basic r3 wifi and ESP Easy
Replies: 18
Views: 12048

Re: sonoff basic r3 wifi and ESP Easy

Great!
Enjoy!
by TD-er
09 Dec 2020, 19:56
Forum: ESP Easy: General Discussion
Topic: ESPeasy and serial commands
Replies: 22
Views: 20281

Re: ESPeasy and serial commands

great you figured it out. how you get the value changing when its in between "123"? honestly asking, cause i think in needed 2 lines to acomplish this. fixed number is easy, but normally we want changinge values. You can just use some sprintf formatting or lots and lots of other options i...
by TD-er
09 Dec 2020, 19:51
Forum: ESP Easy: Hardware
Topic: Erroneous readings
Replies: 16
Views: 12239

Re: Erroneous readings

Yep a loose ground can often cause strange errors.
by TD-er
08 Dec 2020, 16:03
Forum: ESP Easy: Hardware
Topic: Erroneous readings
Replies: 16
Views: 12239

Re: Erroneous readings

You can connect it to a HW serial port, but then it may interfere with programming it via serial and makes it impossible to read logs via serial.
So I would personally use other pins, unless it is easy to remove for debugging.
by TD-er
08 Dec 2020, 16:01
Forum: ESP Easy: General Discussion
Topic: Sonoff Rule On System#Boot not working
Replies: 10
Views: 9677

Re: Sonoff Rule On System#Boot not working

The state is kept and restored after reboot. So what you can do is not rely on the switch state (as it seems to be configured as toggle mode) but keep a state in a variable or maybe even simpler, just look at the state of the relay instead of the state of the switch. For example: Change button to &q...
by TD-er
08 Dec 2020, 15:47
Forum: ESP Easy: General Discussion
Topic: sonoff basic r3 wifi and ESP Easy
Replies: 18
Views: 12048

Re: sonoff basic r3 wifi and ESP Easy

Then the Sonoff isn't put into flashing mode. Like I said it is rather tricky to get the unit into flash mode as you have to keep the button pressed while connecting it to the flasher and powering on. Just to be sure, you can try to keep the button pressed during flashing, but it should not be neede...