Search found 19 matches

by stefbo
26 Mar 2020, 17:30
Forum: ESP Easy: General Discussion
Topic: 150 days online
Replies: 34
Views: 30038

Re: 150 days online

...still alive now for 200 days!
by stefbo
14 Feb 2020, 00:02
Forum: ESP Easy: Software
Topic: ESP32 Firmware Anfängerfrage
Replies: 16
Views: 30592

Re: ESP32 Firmware Anfängerfrage

Hi Sascha, ich nutze meist ESP8266'er, habe aber auch eine ESP32 selbst geflasht, allerdings mit VisualStudioCode mit PlatformIO. Compile und upload haben wunderbar funktioniert.... Stefan BTW: Können wir auf Englisch weiterdiskutieren, dass die anderen Forumteilnehmer auch was davon haben? Sonst pe...
by stefbo
06 Feb 2020, 23:07
Forum: ESP Easy: General Discussion
Topic: 150 days online
Replies: 34
Views: 30038

Re: 150 days online

I think it is not only the SW. I had several units with same or similar SW-Version that behaved completely different (reboot every 2 or 3 days) I continuously update SW without becomming better. Must be HW issue. This one (150d) has a good power supply (buffered with LiPo). Which definitely helps ;-...
by stefbo
05 Feb 2020, 22:53
Forum: ESP Easy: Software
Topic: ESP32 Firmware Anfängerfrage
Replies: 16
Views: 30592

Re: ESP32 Firmware Anfängerfrage

Hi Sascha,
hast Du schon ein fertiges image für esp32 aus dem aktuellen release probiert? ESP_Easy_mega-20200204_test_ESP32_4M316k.bin sollte den plugin für MCP schon enthalten. (https://github.com/letscontrolit/ESPEasy/releases)

Stefan
by stefbo
05 Feb 2020, 22:34
Forum: ESP Easy: General Discussion
Topic: Arduino ESP8266 Compile OK, but lose ESP afer reboot!
Replies: 9
Views: 9531

Re: Arduino ESP8266 Compile OK, but lose ESP afer reboot!

Newest version (mega-20200204) fixed the static ip issue. I tested yesterday and works fine with my devices.
Stefan
by stefbo
05 Feb 2020, 22:28
Forum: ESP Easy: General Discussion
Topic: 150 days online
Replies: 34
Views: 30038

150 days online

Today one of my devices (ESP12E) made the 150days online! 2020-02-05 22_16_42-esp12-03.png SW is based on version from September with some smaller addtional changes (additional plugins, which is not used in this device). I have 2 DS18b20 connected and send data every 30s via UDP to influxdb... looki...
by stefbo
15 Sep 2018, 12:27
Forum: ESP Easy: Software
Topic: Generic UDP Controller with multi value sensors problem
Replies: 3
Views: 3146

Re: Generic UDP Controller with multi value sensors problem

Sure. here is what I did: case CPLUGIN_PROTOCOL_SEND: { byte valueCount = getValueCountFromSensorType(event->sensorType); C010_queue_element element(event, 1); if (ExtraTaskSettings.TaskDeviceValueNames[0][0] == 0) PluginCall(PLUGIN_GET_DEVICEVALUENAMES, event, dummyString); ControllerSettingsStruct...
by stefbo
13 Sep 2018, 23:33
Forum: ESP Easy: Software
Topic: Generic UDP Controller with multi value sensors problem
Replies: 3
Views: 3146

Generic UDP Controller with multi value sensors problem

Hi, I am using UDP controller to send data to influxdb. This works well for single valued sensors like DS18B20. However for multi value sensors like BME280 only the first value is transfered. Looking at the code for the controller (C010.ino) I conclude that for each element several txt entries are c...
by stefbo
13 Sep 2018, 23:19
Forum: Staff Announcements forum
Topic: Giveaway! 20pcs of programmers
Replies: 53
Views: 95191

Re: Giveaway! 20pcs of programmers

I started using ESPEasy as a data collector for my central heating. It replaced my own solution where I used my first ESP8266 to send temperature data to the cloud. What I really liked from the beginning was the high configurability of ESPEasy and the large amount of sensors that are supported. If s...
by stefbo
11 Sep 2017, 14:15
Forum: ESP Easy: General Discussion
Topic: Cannot enable MQTT in v2.0.0-dev11
Replies: 2
Views: 3015

Re: Cannot enable MQTT in v2.0.0-dev11

Hi,
I have seen this at my devices as well for controler 2. But controler 1 works fine with all three MQTT devices.
Stefan
by stefbo
20 Apr 2017, 11:58
Forum: Experimental
Topic: ESP Easy Mega
Replies: 249
Views: 633393

Re: ESP Easy Mega

Hi, I finally managed to set up the new environment and successfully compiled and uploaded the "normal" version to my esp12s. Very impressing! I like it. Good work!!! However I still have som old esp-01 and 201 around running with V140, which I want to upgrade as well. Therefore I looked a...
by stefbo
04 Oct 2016, 23:06
Forum: ESP Easy: General Discussion
Topic: Logging Data to an SD card
Replies: 19
Views: 20949

Re: Logging Data to an SD card

Hi Dominik,
this is something I was also thinking about. I would be very interested in your code. I ordered a SD-card interface some days ago. As soon as it arrives I will go testing
Stefan
by stefbo
28 May 2016, 01:15
Forum: ESP Easy: General Discussion
Topic: Another compiling error
Replies: 5
Views: 6662

Re: Another compiling error

The workaround from https://github.com/esp8266/Arduino/issues/1759 (by tamptus 26.Apr) works for me with 1.6.8 when I replace the call to ADC_MODE(ADC_VCC) with #include "adc.h" (see qutation below) Add a new Tab with file adc.h with one line: ADC_MODE(ADC_VCC) add #include "adc.h&quo...
by stefbo
11 May 2016, 01:07
Forum: ESP Easy: Software
Topic: Possible issue with R103
Replies: 24
Views: 17788

Re: Possible issue with R103

Hi Dave, probably it is due to the larger memeory of the 12E modules, that you observed this behaviour later than me. In the meantime I made two modifications: In the WebServer.ino file are in three locations calls to malloc: char *TempString = (char*)malloc(80); But the TempString is never used. I ...
by stefbo
04 May 2016, 00:04
Forum: ESP Easy: Software
Topic: Possible issue with R103
Replies: 24
Views: 17788

Re: Possible issue with R103

I made another observation: I let my devices run overnight and obviously they rebooted several times. In the morning the load was on 100% even if uptime was only 1 minute. The normal load is about 5% after power up. After a few reboots I also observed loads around 25% with the tendency to increase a...
by stefbo
02 May 2016, 00:34
Forum: ESP Easy: Software
Topic: DS1820
Replies: 4
Views: 4511

DS1820

Dear all, I changed the Plugin_004_DS_readTemp function such that it gives also correct values for DS1820 or DS18s20 (both with family id 0x10). The code is based on the DallasTemperature-lib 3.7.3 Stefan boolean Plugin_004_DS_readTemp(uint8_t ROM[8], float *value) { int16_t DSTemp; byte ScratchPad[...
by stefbo
02 May 2016, 00:13
Forum: ESP Easy: Software
Topic: Possible issue with R103
Replies: 24
Views: 17788

Re: Possible issue with R103

Dear Dave, dear tozett, thanks for your valuable help. I added an additional 100n capacitor between VCC and GND and a 15n capacitor between RST and GND. This seemed to make it a little bit better, but I still got the resets. I also read about the ERASE command which also did not make it much better....
by stefbo
26 Apr 2016, 21:09
Forum: ESP Easy: Software
Topic: Possible issue with R103
Replies: 24
Views: 17788

Re: Possible issue with R103

Hi Dave,
I use the 512k (64 k SPIFF), which should be appropriate for -01 and -201 modules.Any other ideas?

Stefan
by stefbo
25 Apr 2016, 23:45
Forum: ESP Easy: Software
Topic: Possible issue with R103
Replies: 24
Views: 17788

Re: Possible issue with R103

Hi updated to 104 and still the resets occur. I have set debug - 0 Serial ; debug -2 Web. Sometimes the node works for hours, but the it starts resetting again. Sometime it helps to switch it off completely... No clue what causes this. The errors occur on esp8266-201's and on a esp8206-01 Any help w...