Search found 3530 matches

by Ath
29 Apr 2024, 11:41
Forum: ESP Easy: Software
Topic: NeoPixel-038 not working on ESP32s3 zero or mini boards
Replies: 11
Views: 119

Re: NeoPixel-038 not working on ESP32s3 zero or mini boards

Can you test using the neopixel, with LittleFS enabled, build I mentioned before? That uses the latest IDF 5.1 framework, that solves many issues still present in the IDF 4.4 used by non-LittleFS ESP32* builds.
by Ath
29 Apr 2024, 10:50
Forum: ESP Easy: Software
Topic: NeoPixel-038 not working on ESP32s3 zero or mini boards
Replies: 11
Views: 119

Re: NeoPixel-038 not working on ESP32s3 zero or mini boards

The neopixel_ESP32s3_4M316k_LittleFS_CDC build should do the trick here. Be aware that the storage is not migrated from the default SPIFFS to LittleFS, so while you can do an in-place upgrade, then all configuration (except WiFi) will be gone! Or just grab an unused board, then you'll loose nothing ;)
by Ath
29 Apr 2024, 10:46
Forum: ESP Easy: Software
Topic: Problem with Dummy and rule for average value
Replies: 3
Views: 28

Re: Problem with Dummy and rule for average value

Well, the simplest way to get that going is to use an ESP32 Collection B build (or MAX if you have an ESP32 with 16 MB Flash).

AFAICS, the Custom ESP8266 builds currently also get LIMIT_BUILD_SIZE set, causing the statistics/graphs options to be excluded :?
by Ath
29 Apr 2024, 09:57
Forum: ESP Easy: Software
Topic: Problem with Dummy and rule for average value
Replies: 3
Views: 28

Re: Problem with Dummy and rule for average value

The build you're using doesn't include the statistics collection, so no average values are available :o (it's missing the checkboxes to enable that for the Values)
by Ath
28 Apr 2024, 17:44
Forum: ESP Easy: Projects / Applications
Topic: Air Quality unit - which devices are best?
Replies: 75
Views: 5181

Re: Air Quality unit - which devices are best?

Definitely! And as soon as you jumped in, it was a little Apple marketing like: „it just works”. 😉 Thanks again to everyone involved! Thanks for the compliments 8-) Well, now I could think about a PCB to make it nice and neat. 🤔 No idea if more people would be interested, but maybe wrap it up this ...
by Ath
28 Apr 2024, 17:03
Forum: ESP Easy: Projects / Applications
Topic: Air Quality unit - which devices are best?
Replies: 75
Views: 5181

Re: Air Quality unit - which devices are best?

So this turns out to be a successful project 8-)
by Ath
28 Apr 2024, 16:59
Forum: ESP Easy: Software
Topic: NeoPixel-038 not working on ESP32s3 zero or mini boards
Replies: 11
Views: 119

Re: NeoPixel-038 not working on ESP32s3 zero or mini boards

What GPIO pin are you using, and does your board have PSRAM on-board? (H4R2 indicates it has 2MB PSRAM, so pins 26..32 should not be used, and also, there is a warning about using ADC2 pins)
by Ath
28 Apr 2024, 15:16
Forum: ESP Easy: Software
Topic: NeoPixel-038 not working on ESP32s3 zero or mini boards
Replies: 11
Views: 119

Re: NeoPixel-038 not working on ESP32s3 zero or mini boards

A few check questions:
- Is your NeoPixel powered at 5V?
- Do you have a 3.3V/5V level converter installed between the ESP and NeoPixel?
by Ath
27 Apr 2024, 22:03
Forum: ESP Easy: Projects / Applications
Topic: Air Quality unit - which devices are best?
Replies: 75
Views: 5181

Re: Air Quality unit - which devices are best?

Here is ESP Room SmartMonitor V3. This design may give you a reference. https://www.pcbway.com/project/shareproject/ESP_Room_SmartMonitor_V3_8a9e5a39.html It uses DHT22 (Temperature and humidity sensor) and BH1750 light sensor. For dust sensor, you can use PMSx003 modules. https://espeasy.readthedo...
by Ath
27 Apr 2024, 14:56
Forum: ESP Easy: Software
Topic: P2P reliability
Replies: 22
Views: 374

Re: P2P reliability

AndyZZ wrote: 27 Apr 2024, 14:17 What is info#update ?
A small typo, should be "on info#uptime do", the rest of the script is ok.
by Ath
27 Apr 2024, 11:39
Forum: ESP Easy: Software
Topic: P2P reliability
Replies: 22
Views: 374

Re: P2P reliability

And having "SendToHTTP wait for ack" enabled will cause similar slowdowns with poor WiFi connections.
by Ath
26 Apr 2024, 16:37
Forum: ESP Easy: General Discussion
Topic: Divetens Value one one MAX7219 Display
Replies: 2
Views: 68

Re: Divetens Value one one MAX7219 Display

Something like this: on system#boot do LoopTimerSet,1,5 // Perpetual repeating timer endon on rules#timer=1 do let,1,%v1%+1 if %v1% > 4 let,1,1 endif if %v1%=1 DotMatrix,txt,1,"Value1: [MQTT#Value1]" elseif %v1%=2 DotMatrix,txt,1,"Out 2: [MQTT#Value2]" elseif %v1%=3 DotMatrix,txt...
by Ath
26 Apr 2024, 08:59
Forum: ESP Easy: Software
Topic: P2P reliability
Replies: 22
Views: 374

Re: P2P reliability

It seems that those who use p2p a lot care little about the reliability of the parameters used. Well, we seem to differ in opinion on that then, but that's no problem. Using the P2P connected sensors without issues for a long time, and actively developing on ESPEasy, so if there would have been an ...
by Ath
25 Apr 2024, 22:55
Forum: ESP Easy: Software
Topic: Add new sensor (Ambient Light Sensor - VEML6030)
Replies: 5
Views: 126

Re: Add new sensor (Ambient Light Sensor - VEML6030)

We already have 3 Light/Lux sensors supported, P010 - BH1750, P015 - TSL2561 and P074 - TSL2591. Only P015 has RTD documentation available, and P010 has the old Wiki docs available. They don't have a max. lux range comparable to the VEML6030/VEML7700 but are fine sensors, and are available in nearly...
by Ath
25 Apr 2024, 21:41
Forum: ESP Easy: Software
Topic: IMPROVDEBUG:_168_(invalid) in log
Replies: 7
Views: 146

Re: IMPROVDEBUG:_168_(invalid) in log

Are you working on a new plugin with ID P168? As I'm about to assign a number to another planned plugin, but if you are already using that I can also register yours and select the next ID to my planned plugin. Just provide a name and purpose for your plugin.
by Ath
25 Apr 2024, 11:09
Forum: ESP Easy: General Discussion
Topic: moving from domoticz to HA
Replies: 3
Views: 104

Re: moving from domoticz to HA

ESPEasy supports only 1 MQTT controller to be active at 1 time for sending out data (the first one is used). Simplest alternative is to switch your sensors sending all data to Domoticz from rules, so the Domoticz controller can be disabled, then configure HA Controller configuration during the trans...
by Ath
25 Apr 2024, 11:04
Forum: ESP Easy: Software
Topic: Add new sensor (Ambient Light Sensor - VEML6030)
Replies: 5
Views: 126

Re: Add new sensor (Ambient Light Sensor - VEML6030)

Ah, I got the impression you could calculate the lux from available values, but that's not the case. I've ordered a VEML7700, that appears to be compatible in lux range with the VEML6030 but is quite a bit cheaper :?, and have to check specs if they are also (fully) software-compatible. Any reason f...
by Ath
24 Apr 2024, 21:34
Forum: ESP Easy: General Discussion
Topic: Degree shown in DOT-MAtrix 7219
Replies: 8
Views: 125

Re: Degree shown in DOT-MAtrix 7219

Then try:

Code: Select all

DotMatrix,settxt,1,'Pool: [Sens#TEmp]║C'
by Ath
24 Apr 2024, 21:03
Forum: ESP Easy: General Discussion
Topic: Degree shown in DOT-MAtrix 7219
Replies: 8
Views: 125

Re: Degree shown in DOT-MAtrix 7219

bison00 wrote: 24 Apr 2024, 21:02 How can I do this in Rules?

Code: Select all

DotMatrix,settxt,1,'Pool: [Sens#TEmp]{D}C'
by Ath
24 Apr 2024, 21:00
Forum: ESP Easy: General Discussion
Topic: Degree shown in DOT-MAtrix 7219
Replies: 8
Views: 125

Re: Degree shown in DOT-MAtrix 7219

Well, "&deg" is not the way to get that degree symbol shown, you should put the ASCII character 186 there: º
Possibly using {D} could work, don't have a display at hand to test, ATM.
by Ath
24 Apr 2024, 20:27
Forum: ESP Easy: General Discussion
Topic: Degree shown in DOT-MAtrix 7219
Replies: 8
Views: 125

Re: Degree shown in DOT-MAtrix 7219

Of the available fonts, only the Extended ASCII font supports the degree symbol. Depending on the build you're using, this font may or may not be included, you can check that in the Font dropdown list.
The font overview shows what ASCII character to use for making it visible.
by Ath
24 Apr 2024, 14:52
Forum: ESP Easy: Software
Topic: Add new sensor (Ambient Light Sensor - VEML6030)
Replies: 5
Views: 126

Re: Add new sensor (Ambient Light Sensor - VEML6030)

What's special about this sensor that you can't get from either the already supported VEML6040, VEML6070 or VEML6075 ?
by Ath
23 Apr 2024, 20:58
Forum: ESP Easy: General Discussion
Topic: esp01 dht22
Replies: 5
Views: 129

Re: esp01 dht22

BartSr wrote: 23 Apr 2024, 20:52 I looked into https://td-er.nl/ESPEasy/
but from there I might have overlooked but anyway, couldnot find a binfile .
It's there:
Screenshot - 23-04-2024 , 20_59_28.png
Screenshot - 23-04-2024 , 20_59_28.png (7.47 KiB) Viewed 95 times
;)
by Ath
23 Apr 2024, 19:59
Forum: ESP Easy: General Discussion
Topic: esp01 dht22
Replies: 5
Views: 129

Re: esp01 dht22

In the list of plugins you can see that this plugin is in the Normal plugin set, implying it's available in nearly all builds. For 1MB ESP8266 units, like the ESP01, there is a Normal 1M (_not_ 4M1M !) build available that you can upload.
by Ath
22 Apr 2024, 23:08
Forum: ESP Easy: General Discussion
Topic: Not possible to save rules, GUI is odd and no log
Replies: 6
Views: 134

Re: Not possible to save rules, GUI is odd and no log

You could make that dependent on a GPIO pin (with a switch connected), so it doesn't 'waste' all that energy keeping the AP active, as that uses more energy, also when not needed, as that remote site you won't be visiting often, I assume ;)
by Ath
22 Apr 2024, 10:57
Forum: ESP Easy: Hardware
Topic: LILYGO T4-S3 ESP32-S3
Replies: 8
Views: 261

Re: LILYGO T4-S3 ESP32-S3

bastler11 wrote: 18 Apr 2024, 11:51 I had a look on this board:

https://www.amazon.de/dp/B0CRYJC3NW/
Have you seen the real-world dimensions of that display? (the images are somewhat misleading, IMHO) It's only 44mm wide, and 56mm high. And with that 480x600 resolution could result in very small text being displayed :shock:
by Ath
21 Apr 2024, 23:26
Forum: ESP Easy: Software
Topic: Monitoring health of ESP nodes within rules
Replies: 13
Views: 319

Re: Monitoring health of ESP nodes within rules

Can you also add possibility to fetch load of selected node? Well, I wasn't sure if that would be useful, but as you're asking for it I've added it. And I also added the Type column value, both numeric and string-converted, that shows the type of chip in the remote unit (not only ESP's... ;)) A new...
by Ath
21 Apr 2024, 20:38
Forum: ESP Easy: General Discussion
Topic: Not possible to save rules, GUI is odd and no log
Replies: 6
Views: 134

Re: Not possible to save rules, GUI is odd and no log

For uploading files onto the local file system, there is a button "File browser" (near the bottom of the Tools tab), that has an "Upload" button to add files there. The files have to be on the device where you run the webbrowser. There is a little snag in your intended setup: Aft...
by Ath
21 Apr 2024, 20:21
Forum: ESP Easy: Projects / Applications
Topic: Air Quality unit - which devices are best?
Replies: 75
Views: 5181

Re: Air Quality unit - which devices are best?

The temperature offset seems consistent for this sensor, as I see a similar delta. The intended use of the sensor is for temperature compensation of the measurements, not to supply the ambient temperature value :? when configured for Ikea Vindstyrka, an additional compensation is applied in the code...
by Ath
21 Apr 2024, 17:32
Forum: ESP Easy: Software
Topic: Monitoring health of ESP nodes within rules
Replies: 13
Views: 319

Re: Monitoring health of ESP nodes within rules

@jgrad I've created pull request #5039 to add the request conversions. The names are somewhat different then requested, as conversions are required to start with "%c_". Quick documentation available in the PR. (Documentation is also updated, and will be deployed on ESPEasy RTD when the PR ...
by Ath
21 Apr 2024, 13:07
Forum: ESP Easy: General Discussion
Topic: Not possible to save rules, GUI is odd and no log
Replies: 6
Views: 134

Re: Not possible to save rules, GUI is odd and no log

It seems your browser doesn't download additional files from the cdn (content delivery network) implying that access to the internet (by the browser) is required, sometimes it's enough to do a forced refresh in the browser, if that won't work, you can also upload the .js and .css files to the filesy...
by Ath
20 Apr 2024, 23:21
Forum: ESP Easy: Projects / Applications
Topic: Air Quality unit - which devices are best?
Replies: 75
Views: 5181

Re: Air Quality unit - which devices are best?

@localhorst (and others) I've created PR #5038 that a) cleans up the code somewhat, and b) add support for stand-alone use with a Sensirion SEN5x sensor (currently support for SEN54 and SEN55). A build is running in this Actions run I've included the plugin in the Climate and MAX builds. Report any ...
by Ath
20 Apr 2024, 20:16
Forum: ESP Easy: Software
Topic: Which Bin for flashing ESP32-C3 ETH01 evo
Replies: 36
Views: 796

Re: Which Bin for flashing ESP32-C3 ETH01 evo

I had in mind that the factory-version will erase all settings.. But that seems not true.. To reset/clear the flash you have to explicitly erase it, either form the Flash Download Tool, the Web Flasher, or by applying the reset command from ESPEasy, but that last one just 'emulates' a wipe by erasi...
by Ath
20 Apr 2024, 20:12
Forum: ESP Easy: Software
Topic: Which Bin for flashing ESP32-C3 ETH01 evo
Replies: 36
Views: 796

Re: Which Bin for flashing ESP32-C3 ETH01 evo

The factory.bin includes the bootloader and partitioning data in addition to the sketch (Arduino term), and has to be flashed from address 0x0 on the flash, the non-factory.bin file only includes the sketch, and has to be installed at address 0x10000 (or on the second APP partition, but then the sta...
by Ath
20 Apr 2024, 17:00
Forum: ESP Easy: Software
Topic: Which Bin for flashing ESP32-C3 ETH01 evo
Replies: 36
Views: 796

Re: Which Bin for flashing ESP32-C3 ETH01 evo

No progress with uploading the new firmware... After one hour I took off the power. After reboot no sign of live on ethernet of wifi. So I decided to flash by USB2serial again with the ESP_Easy_mega_20240419_custom_ESP32c3_4M316k_LittleFS_CDC_ETH.factory.bin. The SSID showed up but same problem as ...
by Ath
20 Apr 2024, 16:47
Forum: ESP Easy: Software
Topic: IMPROVDEBUG:_168_(invalid) in log
Replies: 7
Views: 146

Re: IMPROVDEBUG:_168_(invalid) in log

The message you have shown is only found in the IMPROV handler, that's why I asked. Most likely you have some unclosed structure, or a missing break somewhere in your code, or are calling some uninitialized class method, that accidentally points somewhere in the IMPROV code :o . The plugin reads a v...
by Ath
19 Apr 2024, 23:19
Forum: ESP Easy: Software
Topic: IMPROVDEBUG:_168_(invalid) in log
Replies: 7
Views: 146

Re: IMPROVDEBUG:_168_(invalid) in log

What does your plugin do to trigger the IMPROV serial handler? Got some 'handle' method that's not bound to a specific class?
by Ath
19 Apr 2024, 23:15
Forum: ESP Easy: Software
Topic: Which Bin for flashing ESP32-C3 ETH01 evo
Replies: 36
Views: 796

Re: Which Bin for flashing ESP32-C3 ETH01 evo

No problem, you can upgrade via the Firmware Update button on the Tools page, as long as you use the same ESP model (C3), Flash layout (4M316k), Filesystem (LittleFS) and ETH feature. But for the C3 there's no Energy build with those features available... Here's a Custom C3 build that does include t...
by Ath
19 Apr 2024, 21:28
Forum: ESP Easy: Software
Topic: Which Bin for flashing ESP32-C3 ETH01 evo
Replies: 36
Views: 796

Re: Which Bin for flashing ESP32-C3 ETH01 evo

The GPIO pins are wired that way, so it's the only way to make it work... For this device you can ignore the warnings.

F.e. GPIO-9 is the pin to pull the device into flash-mode, but in this setup it's used as an output-pin so no issue.
by Ath
19 Apr 2024, 20:59
Forum: ESP Easy: Software
Topic: Which Bin for flashing ESP32-C3 ETH01 evo
Replies: 36
Views: 796

Re: Which Bin for flashing ESP32-C3 ETH01 evo

Well, you got where you wanted to go :lol: but it took some effort...

Once you connect a few more ESP's you get more experienced, so it will go a bit smoother, we've all been there and done that :roll:
by Ath
19 Apr 2024, 20:18
Forum: ESP Easy: Software
Topic: Which Bin for flashing ESP32-C3 ETH01 evo
Replies: 36
Views: 796

Re: Which Bin for flashing ESP32-C3 ETH01 evo

Does your browser automatically use https protocol, instead of http ? as https is not (yet) supported by ESPEasy. Euhm, why is port 80..87 blocked on your device? The webserver is available at port 80. Looks like you have some security software running (might be anti-virus or anti-hacking software) ...
by Ath
19 Apr 2024, 15:45
Forum: ESP Easy: Software
Topic: Which Bin for flashing ESP32-C3 ETH01 evo
Replies: 36
Views: 796

Re: Which Bin for flashing ESP32-C3 ETH01 evo

How did you upload the binary to the ETH unit, via the Web Flasher or via the Espressif Flash Download tool?
by Ath
18 Apr 2024, 23:15
Forum: ESP Easy: Software
Topic: Monitoring health of ESP nodes within rules
Replies: 13
Views: 319

Re: Monitoring health of ESP nodes within rules

jgrad wrote: 18 Apr 2024, 20:32 %u_IP%(N)
That's already available, named %c_u2ip%(N,x) where N = unitnr, and x determines what's returned for an empty IP: 1 = "" (empty string), 2 = 0
by Ath
18 Apr 2024, 22:26
Forum: ESP Easy: Software
Topic: Missing DEBUG Option for Weblog
Replies: 5
Views: 128

Re: Missing DEBUG Option for Weblog

I use the Serial plugin. It was useful to see what was sent or received.. to my board .. I assume that's the Serial Server plugin? P020/P044 (Serial Proxy P087 is not included in the Normal builds) AFAICS, that plugin doesn't log the incoming data separately, but you can see most data logged at INF...
by Ath
18 Apr 2024, 21:28
Forum: ESP Easy: Software
Topic: Missing DEBUG Option for Weblog
Replies: 5
Views: 128

Re: Missing DEBUG Option for Weblog

The debug logging has been disabled for ESP8266 Normal builds for a couple of months.

What debug log would you want to see? As not much information in that log level is usable for non-developers :?
by Ath
18 Apr 2024, 20:47
Forum: ESP Easy: Software
Topic: Monitoring health of ESP nodes within rules
Replies: 13
Views: 319

Re: Monitoring health of ESP nodes within rules

jgrad wrote: 18 Apr 2024, 20:32 Values are available in response to http://localhost/json but I dont know how to get this response and parse it within rules.
You can not get the JSON output from rules from the same ESP, and you can't process the resulting (large) json-text.

We'll try to add the functions.
by Ath
18 Apr 2024, 20:44
Forum: ESP Easy: Software
Topic: Missing DEBUG Option for Weblog
Replies: 5
Views: 128

Re: Missing DEBUG Option for Weblog

What exact build have you installed?
by Ath
18 Apr 2024, 14:59
Forum: ESP Easy: Hardware
Topic: LILYGO T4-S3 ESP32-S3
Replies: 8
Views: 261

Re: LILYGO T4-S3 ESP32-S3

One more question: how could I get an information that somebody answers on my question, is there a switch in the settings? If you go to your User Control Panel (dropdown menu top-right, next to your username), Select 'Board Preferences', then 'Edit notification options', you can determine what noti...
by Ath
18 Apr 2024, 11:06
Forum: ESP Easy: Hardware
Topic: LILYGO T4-S3 ESP32-S3
Replies: 8
Views: 261

Re: LILYGO T4-S3 ESP32-S3

What version of that board do you have in mind? There are a couple of different versions, also quite different in price ( $30,- .. $75,- ) ... :o At the moment the display controller in those boards isn't supported (it's not using 'standard' SPI but a 4 or 8 bit parallel connection), but there has b...
by Ath
17 Apr 2024, 20:09
Forum: ESP Easy: Projects / Applications
Topic: YALP (yet another LoRa/LoRaWAN project)
Replies: 5
Views: 194

Re: YALP (yet another LoRa/LoRaWAN project)

That's a great project, and all the implementation details, and decisions you made, make it a very inspiring read. Thanks!