Search found 10 matches

by pm_cz
17 Oct 2016, 13:13
Forum: ESP Easy: Hardware
Topic: BMP280 (GY-BME/P280) Reading all 0.0's [FIXED: IDX/VAR was 0]
Replies: 8
Views: 22936

Re: BMP280 (GY-BME/P280) Reading all 0.0's [FIXED: IDX/VAR was 0]

I think this is a mistake we all do in the beginning, since the idx=0 not measuring anything is not intuitive.

Regards,
Pavel
by pm_cz
15 Oct 2016, 08:49
Forum: ESP Easy: Hardware
Topic: BMP280 (GY-BME/P280) Reading all 0.0's [FIXED: IDX/VAR was 0]
Replies: 8
Views: 22936

Re: GY-BME/P280 Reading all 0.0's

It would be good to include log messages and version of ESPEasy. Generally speaking, these boards typically include pull-up resistors so you do not have to use them. I suppose you have tried both plugins (Temperature & Humidity & Pressure - BME280, Temperature & Pressure - BMP280) and th...
by pm_cz
10 Oct 2016, 08:58
Forum: ESP Easy: General Discussion
Topic: My first Wemos D1 + Easy ESP: need help in wiring
Replies: 29
Views: 31247

Re: My first Wemos D1 + Easy ESP: need help in wiring

I do not own Wemos D1 mini, but if it has standard ESP-12 module (there seem to be two versions of D1 mini online, one using it and another having ESP on PCB), is it not connected to TX PIN (i.e. it blinks each time some log is written to TX line)? If so, you can disable it by turning off serial log...
by pm_cz
09 Oct 2016, 15:39
Forum: ESP Easy: General Discussion
Topic: Logging Data to an SD card
Replies: 19
Views: 21254

Re: Logging Data to an SD card

It would be interesting if you could share it since I was playing with the idea of SD plugin myself. Take a look at the github pull request. If the devs find it ok - maybe you can donwload it directly in R137 ... ;) Sorry for misuderstanding, what I meant here was that I wanted to know the reason w...
by pm_cz
09 Oct 2016, 09:16
Forum: ESP Easy: General Discussion
Topic: Logging Data to an SD card
Replies: 19
Views: 21254

Re: Logging Data to an SD card

So if I understand correctly from the code, you may either send data to some server or write them to SD card but not both at the same time? I guess there is a reason why it has not been possible to implement is as an output plugin (like _P012_LCD.ino or _P023_OLED.ino). It would be interesting if yo...
by pm_cz
05 Oct 2016, 08:48
Forum: ESP Easy: General Discussion
Topic: My first Wemos D1 + Easy ESP: need help in wiring
Replies: 29
Views: 31247

Re: My first Wemos D1 + Easy ESP: need help in wiring

From all BMP280s I have the positive temperature shift is consistently present and the pressure differs between individual BMP280 boards (+/- 1,5 hPa). Maybe they are calibrated during manufacture and some external factors (soldering, transportation from seller in China) make the calibration invalid...
by pm_cz
08 Sep 2016, 14:28
Forum: ESP Easy: Software
Topic: ESP Easy Releases
Replies: 345
Views: 296735

Re: ESP Easy Releases

I found out after the merge of my code that it may be necessary to re-save the device setting for BME280 after upgrade to R129. The setting for the address will be probably pre-set to address 0 otherwise. I wonder if there is a way how to auto-upgrade the values in such case (the alternative is to a...
by pm_cz
21 Jul 2016, 19:48
Forum: ESP Easy: Software
Topic: Local timestamps for sensor values?
Replies: 0
Views: 1799

Local timestamps for sensor values?

Hello, I run into an issue where I would like to provide local timestamps of the measurement time (just the POSIX timestamp - 32 bit long value) together with measured values (mainly for generic MQTT) and I wonder which way would be the best? I can implement it and create a push request if neccessar...
by pm_cz
17 Apr 2016, 23:00
Forum: Introduce yourself
Topic: Hello from Czech Republic
Replies: 1
Views: 5573

Hello from Czech Republic

Hello, I am Pavel from Czech Republic. I am interested in Computer Systems and Networks, mobile devices and all kinds of sensors one can connect to IoT. I would like to contribute some plugins when I have time in my schedule, but so far I did not find Issue reporting in github/SF repo. For now I hav...
by pm_cz
16 Mar 2016, 10:59
Forum: ESP Easy: Software
Topic: R85: ESPEasy.ino:203:22: fatal error: Base64.h: No such file or directory
Replies: 9
Views: 9357

Re: R85: ESPEasy.ino:203:22: fatal error: Base64.h: No such file or directory

Hello, I had same problem, but found that the file exists under a slightly different name. Just rewrite it to #include <base64.h> It works on Windows so the app will compile, but Linux is case-sensitive so the compilation failed. Edit: However, if you have 2.0.0 you will probably need to change firs...