Search found 83 matches

by ingoiot
23 Nov 2021, 21:48
Forum: Introduce yourself
Topic: Hi From Germany
Replies: 4
Views: 8780

Re: Hi From Germany

iobroker is relatively widespread in germany.
for me it is easier to set up than the others and quite extensive
by ingoiot
24 Oct 2021, 23:56
Forum: ESP Easy: General Discussion
Topic: how to build plugins from playground?
Replies: 4
Views: 4299

Re: how to build plugins from playground?

i have no idea what this does but tnx, it builds.

i looks like its really a pretty beta plugin.
by ingoiot
24 Oct 2021, 22:25
Forum: ESP Easy: General Discussion
Topic: how to build plugins from playground?
Replies: 4
Views: 4299

Re: how to build plugins from playground?

i just copied the files over from playgraound and hit "build". now i only copied the 135.ino file with this result: # warning "**** Using Settings from Custom.h File ***" ^ Compiling .pio/build/custom_ESP8266_4M1M/src/_Plugin_Helper.cpp.o /home/i/Downloads/ESPEasy/src/_P135_MQ135...
by ingoiot
24 Oct 2021, 21:52
Forum: ESP Easy: General Discussion
Topic: how to build plugins from playground?
Replies: 4
Views: 4299

how to build plugins from playground?

hi, has anyone a hint how to build the MQ135 plugin from the playground? I copied the src folder and .ino files but this seems not to be enough. Compiling .pio/build/custom_ESP32_4M316k/src/ESPEasy_common.cpp.o /home/i/Downloads/ESPEasy/src/__Plugin.ino: In function 'void PluginInit()': /home/i/Down...
by ingoiot
25 Apr 2021, 13:16
Forum: ESP Easy: Projects / Applications
Topic: How to log the water level in a well pipe
Replies: 66
Views: 33050

Re: How to log the water level in a well pipe

what type of sensor is it?
i´ve never seen a pressuresensor with a resistor output.
by ingoiot
23 Apr 2021, 19:28
Forum: ESP Easy: Projects / Applications
Topic: How to log the water level in a well pipe
Replies: 66
Views: 33050

Re: How to log the water level in a well pipe

only dutch and germans here but using PSI? really? ^^

one of this

should be sufficent. 0-2 bar is plenty range and enough resolution.

drop it down the pipe but take care of dirt and clogs.

for some extra money there are premade ones.
by ingoiot
19 Apr 2021, 19:12
Forum: ESP Easy: Projects / Applications
Topic: How to log the water level in a well pipe
Replies: 66
Views: 33050

Re: How to log the water level in a well pipe

capacitve sensors are pretty hard to tweak even with industry standard sensors.

what about a pressure sensor?

can you post a pic of the pipes shape?
by ingoiot
09 Apr 2021, 00:15
Forum: ESP Easy: General Discussion
Topic: Custom WebUI
Replies: 39
Views: 17437

Re: Custom WebUI

maybe somnething like this helps: <head> <script onload="setInterval()"> setInterval (async function() { response = await fetch("/json?view=sensorupdate"); myJson = await response.json(); tempVar = myJson.Sensors[1].TaskValues[0].Value; document.getElementById("tempId")...
by ingoiot
11 Mar 2021, 08:51
Forum: ESP Easy: General Discussion
Topic: ESP32 touch false positve detection
Replies: 18
Views: 9029

Re: ESP32 touch false positve detection

finally a version that seems to work: on touch#Touch do timerSet_ms,1,2200 //Set Timer 1 for the next event endon on touch#Touch do if [Touch#touch]>50 timerSet_ms,1,0 //ReSet Timer 1 endon on Rules#Timer=1 do if [Touch#touch]<30 servo,1,17,1 // servo Pos1 timerSet,2,4 //Set Timer 2 for the next eve...
by ingoiot
10 Mar 2021, 19:08
Forum: ESP Easy: General Discussion
Topic: ESP32 touch false positve detection
Replies: 18
Views: 9029

Re: ESP32 touch false positve detection

i changed it to: on System#Boot do let,1,0 endon // With debouncing in the script: on touch#Touch do if %v1%=0 let,1,1 timerSet_ms,1,1200 // Debouncing timer endif endon on Rules#Timer=1 do if %v1%=1 servo,1,17,1 // servo Pos1 timerSet,2,4 //Set Timer 2 for the next event in 4seconds endif let,1,0 e...
by ingoiot
10 Mar 2021, 15:11
Forum: ESP Easy: General Discussion
Topic: ESP32 touch false positve detection
Replies: 18
Views: 9029

Re: ESP32 touch false positve detection

i tried software debounce in rules, but there are occasionally still false positives. am i doing it the right way, or is the code faulty? on System#Boot do let,1,0 endon // With debouncing in the script on touch#Touch do if %v1%=0 let,1,1 endif timerSet_ms,1,1200 // Debouncing timer endif endon on R...
by ingoiot
09 Mar 2021, 14:53
Forum: ESP Easy: General Discussion
Topic: ESP32 touch false positve detection
Replies: 18
Views: 9029

Re: ESP32 touch false positve detection

tnx,
sounds great
by ingoiot
09 Mar 2021, 11:56
Forum: ESP Easy: General Discussion
Topic: ESP32 touch false positve detection
Replies: 18
Views: 9029

Re: ESP32 touch false positve detection

is there an option to debounce the touch trigger?
no matter the threshold, there are sometimes spikes that are way to high
by ingoiot
08 Mar 2021, 19:06
Forum: ESP Easy: Projects / Applications
Topic: BME 680 sensor
Replies: 55
Views: 63931

Re: BME 680 sensor

one question about the license.

Bosch released the api under BSD 3-clause.

is this really not compatible with espeasy license?

bsd should be on of the freest.
by ingoiot
07 Mar 2021, 22:33
Forum: ESP Easy: General Discussion
Topic: ESP32 touch false positve detection
Replies: 18
Views: 9029

Re: ESP32 touch false positve detection

the web gpio commands are correct.

its not likely the silkscreen because i touched the castelate edges of the chip - so it seems to be the chip itself.
(or the docs)
by ingoiot
07 Mar 2021, 22:21
Forum: ESP Easy: General Discussion
Topic: ESP32 touch false positve detection
Replies: 18
Views: 9029

Re: ESP32 touch false positve detection

hm, seems like the code is ok, but when i touch on the board direct on the castelated edge touch 9 an 8 are reversed. i configured T9 but have to touch T8. dont know if this my board, but it looks like an original wroom -32 like in your pic. edit: looks like someone else had a similar problem https:...
by ingoiot
07 Mar 2021, 21:31
Forum: ESP Easy: General Discussion
Topic: ESP32 touch false positve detection
Replies: 18
Views: 9029

Re: ESP32 touch false positve detection

i´ve quite some problems to get rid of the false positives.

on adc1 it initially didn't work at all. seems like touch 8 and 9 are reversed.

maybe it has something to do with this:

Image


https://ibb.co/qD5my9W
esp.png
esp.png (209.01 KiB) Viewed 8987 times
by ingoiot
07 Mar 2021, 14:16
Forum: ESP Easy: General Discussion
Topic: ESP32 touch false positve detection
Replies: 18
Views: 9029

Re: ESP32 touch false positve detection

i tried to find a good value. but why does the esp start an event when the value is over my setvalue like in: 2828368: EVENT: touch#Touch=76.00 2828375: ACT : servo,1,17,1 thats over the set limit of 50. also the duration event is missing when its triggered randomly like this: 2941955: WD : Uptime 4...
by ingoiot
06 Mar 2021, 20:29
Forum: ESP Easy: General Discussion
Topic: ESP32 touch false positve detection
Replies: 18
Views: 9029

ESP32 touch false positve detection

my ESP frequently triggers the touch event even if its not touched. like 2828368: EVENT: touch#Touch=76.00 even if my trigger level is set to 50. it seems always to happen after the 2791957: WD : Uptime 47 ConnectFailures 0 FreeMem 200912 WiFiStatus WL_CONNECTED ESPeasy internal wifi status: Conn. I...
by ingoiot
06 Mar 2021, 19:56
Forum: ESP Easy: General Discussion
Topic: move servo
Replies: 2
Views: 3731

Re: move servo

on touch#Touch do servo,1,17,1 timerSet,1,4 //Set Timer 1 for the next event in 4seconds endon On Rules#Timer=1 do //When Timer1 expires, do servo,1,17,70 timerSet,2,4 //Set Timer 2 for the next event in 4seconds endon On Rules#Timer=2 do //When Timer2 expires, do servo,1,17,9000 // servo off(doesn...
by ingoiot
06 Mar 2021, 17:15
Forum: ESP Easy: General Discussion
Topic: move servo
Replies: 2
Views: 3731

move servo

hi, on touch#Touch do servo,1,17,1 timerSet,1,2 //Set Timer 1 for the next event in 2 seconds endon On Rules#Timer=1 do //When Timer1 expires, do servo,1,17,70 servo,1,17,9000 // servo off(doesnt work) endon adding servo,1,17,9000 prevents servo,1,17,70 to happen. can i force to run the commands in ...
by ingoiot
04 Mar 2021, 20:52
Forum: ESP Easy: Hardware
Topic: need help configuring switch
Replies: 6
Views: 7453

Re: need help configuring switch

dont knmow how this really works,but im guessing that

setting type to total and mode to change,
activating send single event with all values,
setting the formula to %value%/480
at an intervall of 10 sec.
should give you the total amount of used kwh since last reboot. every 10 seconds.
by ingoiot
04 Mar 2021, 13:36
Forum: ESP Easy: Hardware
Topic: need help configuring switch
Replies: 6
Views: 7453

Re: need help configuring switch

maybe this is what you are looking for?

https://espeasy.readthedocs.io/en/lates ... R5000.html
by ingoiot
03 Mar 2021, 19:37
Forum: ESP Easy: Hardware
Topic: need help configuring switch
Replies: 6
Views: 7453

Re: need help configuring switch

can you measure a voltage on the GPIO pin?
also the overview page is not always that fast.
is there something in the logs?
by ingoiot
28 Feb 2021, 16:31
Forum: ESP Easy: General Discussion
Topic: ESP32 Servo + touch
Replies: 7
Views: 5049

Re: ESP32 Servo + touch

tnx,
seems to work - even if i dont know what i´m doing^^

is "open the file “pre_extra_script.py” and add or remove the plugins and controllers you need. "

obsolete? i couldnt find that file.
by ingoiot
28 Feb 2021, 14:39
Forum: ESP Easy: General Discussion
Topic: ESP32 Servo + touch
Replies: 7
Views: 5049

Re: ESP32 Servo + touch

tnx,
i´ll try to build one.

whats the "limit_build_size builds"?

looks like in my "normal" the servo is enabled.

i used "ESP_Easy_mega_20210223_test_ESP32_4M316k.bin"

whats the difference to the ETH version?
by ingoiot
27 Feb 2021, 21:44
Forum: ESP Easy: General Discussion
Topic: ESP32 Servo + touch
Replies: 7
Views: 5049

ESP32 Servo + touch

hi,

i need a build with "touch" and "servo" functionality.

i tried custom and test where "touch" works,and normal where "servo" works.
i thought test and custom include everything that normal does.

is there a build where touch and servo on the ESP32 do work?
by ingoiot
27 Jan 2021, 19:04
Forum: ESP Easy: General Discussion
Topic: Connect 2 units by wire
Replies: 6
Views: 5289

Re: Connect 2 units by wire

because i dont want to use a wireless network. eg i want a monitor with raspi and bme 680 to display it locally. not everywhere wlans are allowed, and especailly slower pi´s have a hard time to have wlan and accesspoint up at the same time. Also its a huge effort to keep up with all the extra securi...
by ingoiot
25 Jan 2021, 23:44
Forum: ESP Easy: General Discussion
Topic: Connect 2 units by wire
Replies: 6
Views: 5289

Re: Connect 2 units by wire

i basically want what a p2p connection does, only by wire.
by ingoiot
23 Jan 2021, 21:03
Forum: ESP Easy: General Discussion
Topic: Connect 2 units by wire
Replies: 6
Views: 5289

Connect 2 units by wire

hi, is it possible to connect two (wemos D1) ESPeasy devices via cable? USB serial or some dedicated GPIOs? I´m especially interested in using an ESP8266 or ESP32 to conntect to a Rasperry pi running RPIeasy to use the analoge Pins and/or Moduls that are not available for RPieasy, without the hassle...
by ingoiot
10 Jul 2020, 21:17
Forum: RPiEasy: Software
Topic: Upload to file system
Replies: 3
Views: 8736

Re: Upload to file system

seems to work, tnx.
by ingoiot
09 Jul 2020, 17:18
Forum: RPiEasy: Software
Topic: Upload to file system
Replies: 3
Views: 8736

Re: Upload to file system

Code: Select all

17:17:02 File upload started...
17:17:02 'datafile'
17:17:02 Exception while uploading 'datafile'
maybe a file permission problem?
by ingoiot
09 Jul 2020, 15:28
Forum: RPiEasy: Software
Topic: Upload to file system
Replies: 3
Views: 8736

Upload to file system

hi,

for some reason i cannot upload txt files to the filesystem via file browser.
on esp32 it works but not on a pi zero.
by ingoiot
07 Jul 2020, 22:28
Forum: ESP Easy: Software
Topic: Free Storage used for OTA
Replies: 3
Views: 6368

Re: Free Storage used for OTA

didnt know about that controller.
is it the c16 controller? quite a bit todos on the github page..
Do need to compile it myself?

Not very high in priority list, i just wanted to serve some css stuff with my page.
by ingoiot
06 Jul 2020, 00:58
Forum: ESP Easy: Software
Topic: Free Storage used for OTA
Replies: 3
Views: 6368

Free Storage used for OTA

hi,

would it be possible to use the OTA Partition (ESP32) for data logging or my own html pages?
E.G. if i do not want to use OTA just mount the partition as for example SPiffs.

i wouldn mind loosing the data when later deciding updating OTA and transfer my data back.
by ingoiot
06 Jul 2020, 00:48
Forum: ESP Easy: Software
Topic: how to upload easyGUI
Replies: 5
Views: 11483

Re: how to upload easyGUI

as its loaded correctly from the ESP, but not from local file or local httpd,
it guess the browsers header is right.
so propably i misconfgured something
by ingoiot
05 Jul 2020, 18:01
Forum: ESP Easy: Software
Topic: how to upload easyGUI
Replies: 5
Views: 11483

Re: how to upload easyGUI

yes its the new one.

i just wanted to check the progres:)

and see if there are any limitations in size if i want to make my own (mini) frontend.

(if i try to open the .gz file in firefox direct, FF tried to download, not open it)
by ingoiot
05 Jul 2020, 15:56
Forum: ESP Easy: Software
Topic: how to upload easyGUI
Replies: 5
Views: 11483

how to upload easyGUI

hi, i seems like you have to only upload the index.html.gz to work. At leat on my ESP32 is not enough space for more. The only version i can get to work(kind Of) is the mini version. The others dont start/hanging in the loading screen. i guess the file is decompressed on the fly before the ESP32 del...
by ingoiot
02 Jul 2020, 20:16
Forum: ESP Easy: General Discussion
Topic: UTC Time settings
Replies: 3
Views: 6002

Re: UTC Time settings

done,
(hopefully at the right place)
by ingoiot
02 Jul 2020, 02:14
Forum: ESP Easy: General Discussion
Topic: UTC Time settings
Replies: 3
Views: 6002

UTC Time settings

hi,

it seems like the UTC+- setting is only activated when DST is active.
Thats a bit confusing especially when I dont want to use DST. Maybe its better placed under "Location Settings".

Maybe its already out of date due to the release of the new GUI? :)
by ingoiot
04 Nov 2019, 21:23
Forum: ESP Easy: Software
Topic: Send file to ESPeasy
Replies: 11
Views: 13057

Re: Send file to ESPeasy

tnx, ill try it
by ingoiot
04 Nov 2019, 19:50
Forum: ESP Easy: Software
Topic: Send file to ESPeasy
Replies: 11
Views: 13057

Send file to ESPeasy

hi,
can i send a file directly to the esp without using the buildin fliebrowser?
i'd like to send a dashbord.htm via app.
by ingoiot
30 Oct 2019, 18:37
Forum: ESP Easy: Hardware
Topic: hotplug i2C devices
Replies: 3
Views: 7825

Re: hotplug i2C devices

tnx,
looks like i have to stop hotpluggin it^^
by ingoiot
29 Oct 2019, 19:30
Forum: ESP Easy: Hardware
Topic: hotplug i2C devices
Replies: 3
Views: 7825

hotplug i2C devices

hi,

when i hotplug my ds18b20 Temp sensor, the esp reboots.
Can i make it hot plugable?
by ingoiot
20 Oct 2019, 22:12
Forum: ESP Easy: Software
Topic: check if Sensor is active
Replies: 18
Views: 16161

Re: check if Sensor is active

tnx,

so i changed my stayalive rule to

Code: Select all

on DS18b20#Temperature do
  sendTo 1,event,StayAlive
 endon

this should send the stayalive function with interval set for the sensor i think.
and if the senor has an error it shouldnt run - seem to work for now
by ingoiot
20 Oct 2019, 19:58
Forum: ESP Easy: Software
Topic: check if Sensor is active
Replies: 18
Views: 16161

Re: check if Sensor is active

the temp is about 16 degrees.

i pull out the sensor so the value should become 0,
(and it shows 0 in device menu)
therefore it should send relayoff
by ingoiot
20 Oct 2019, 19:23
Forum: ESP Easy: Software
Topic: check if Sensor is active
Replies: 18
Views: 16161

Re: check if Sensor is active

"and" means that both need to be true...
thats what i want. the event should be only true as long as the temperatue is between 10 and 100 degrees
so when the sensor fails it shuts off.
by ingoiot
20 Oct 2019, 18:53
Forum: ESP Easy: Software
Topic: check if Sensor is active
Replies: 18
Views: 16161

Re: check if Sensor is active

works much better:) tnx looks like everything is working right now, except that the first else part is not executed. i switched the ds18b29 error from NaN to 0, but that didnt help. the SetTempEvent isnt called in the logs, that looks ok, but the else statment isnt run. on DS18b20#Temperature do If ...
by ingoiot
20 Oct 2019, 17:27
Forum: ESP Easy: Software
Topic: check if Sensor is active
Replies: 18
Views: 16161

Re: check if Sensor is active

now it looks like this, but still no settemp event

Code: Select all

on [ds18b20#Temperature] do

   event,SetTemp

EndOn

On SetTemp do
 if [ds18b20#Temperature]<[DummyVar#tempSetpoint]
   sendTo 1,event,RelayOn
  else
   sendTo 1,event,RelayOff
  EndIf
EndOn
by ingoiot
20 Oct 2019, 14:33
Forum: ESP Easy: Software
Topic: check if Sensor is active
Replies: 18
Views: 16161

Re: check if Sensor is active

mega-20190809
whats the difference between old and new ruletype?