Search found 8 matches

by Beliar_666
09 Mar 2021, 23:56
Forum: ESP Easy: Software
Topic: Different Deepsleeptimes by Clock?
Replies: 6
Views: 7451

Different Deepsleeptimes by Clock?

Hello, I want to use a D1Mini as a accupowered Weatherstation. It works with two 18650 Accus, a 5V Solarpanel and a TP4065. I Use Deepsleep and wake it up every 30 minutes. It works good this way. Now i think why waking up at night every 30 minutes, at night no one looks for the temparature. So now ...
by Beliar_666
04 Feb 2021, 18:24
Forum: ESP Easy: Projects / Applications
Topic: switching relay with Temperature and/or Humidity
Replies: 5
Views: 9473

Re: switching relay with Temperature and/or Humidity

Ok, i tried it out and it works. I don´t understand it very well, but what exactly means %eventvalue1% and can i use %eventvalue1% in every rule or do i have to give it different numbers, e.g. %eventvalue1% , %eventvalue2% ... ?
by Beliar_666
03 Feb 2021, 18:27
Forum: ESP Easy: Projects / Applications
Topic: switching relay with Temperature and/or Humidity
Replies: 5
Views: 9473

Re: switching relay with Temperature and/or Humidity

ok, i tried the quick and dirty way, this also works:

Code: Select all

On System#Boot do
 gpio,13,1
endon

on Aussen#temperature>27 do
          gpio,13,0
endon   

on Aussen#temperature<27 do
          gpio,13,1
endon
Is this the better way?
by Beliar_666
03 Feb 2021, 15:46
Forum: ESP Easy: Projects / Applications
Topic: switching relay with Temperature and/or Humidity
Replies: 5
Views: 9473

switching relay with Temperature and/or Humidity

Hello, I want o switch a relay when my temp is under a certain value, and switch back when the value is reached back. I Use a BME280 to measure and a relay connected to gpio12 I have figured out to switch the relay with following rule On System#Boot do gpio,13,1 endon on Aussen#temperature do if %ev...
by Beliar_666
22 Jan 2021, 17:03
Forum: ESP Easy: Software
Topic: Notify on temperature lower than 3°C
Replies: 4
Views: 5460

Re: Notify on temperature lower than 3°C

Wow. Many thanks, that works.
by Beliar_666
22 Jan 2021, 16:40
Forum: ESP Easy: Software
Topic: Notify on temperature lower than 3°C
Replies: 4
Views: 5460

Notify on temperature lower than 3°C

Hello, i have following Problem, i want to use a temperaturesensor and a buzzer to inform me if the temperature goes below 3°C. I tried with following rule: on Aussen#temperature<3.00 do notify 1 endon Now the Buzzer beeps continuosly if the temperature is below 3°C till temp raises over 3°C. But i ...
by Beliar_666
13 Apr 2019, 20:03
Forum: ESP Easy: General Discussion
Topic: How to wake from deep sleep
Replies: 7
Views: 6419

How to wake from deep sleep

Hello, my next problem: Iuse a Nodemcu with a connected Microswitch to Send a mqttstate to my Iobroker. The Node is powered by one 18650 Cell so it should go to deepsleep and wake up when the postman inserts something in my Postbox. So it has to wake up when the Lid is opened and then send the chang...
by Beliar_666
11 Apr 2019, 00:11
Forum: ESP Easy: General Discussion
Topic: Monitoring Battery/Accu
Replies: 1
Views: 2471

Monitoring Battery/Accu

Hello,
I plan to run my Nodemcu with ESP Easy Mega with Batterys/Accu as Powersupply. Is it possible to monitor the Powersource used and send the Voltage also via mqtt?