Search found 9 matches

by cassioac
22 Apr 2021, 18:29
Forum: ESP Easy: Software
Topic: Using clock, timer and PIR to send IR transmitter command
Replies: 9
Views: 5740

Re: Using clock, timer and PIR to send IR transmitter command

So does this looks good? on System#Boot do timerSet,1,3600. // set the timer on boot on PIR#Switch=1 do timerSet,1,3600 // reset timer to 60 minutes endon on Rules#timer=1 do if %systime% > 08:00:00 and %systime% < 22:00:00 // Send your IR command IRSEND,'{"protocol":"NIKAI",&quo...
by cassioac
22 Apr 2021, 18:27
Forum: ESP Easy: Software
Topic: Web Log on IR firmware
Replies: 3
Views: 3743

Re: Web Log on IR firmware

For developing is ok to use the serial.. Should I file a bug report?
by cassioac
22 Apr 2021, 15:16
Forum: ESP Easy: Software
Topic: Web Log on IR firmware
Replies: 3
Views: 3743

Web Log on IR firmware

Hello, I had to install the minimal + IR version of espeasy (4mb flash), and I noticed that the web log is stripped off the firmware, that's bad because it makes me have to plug the serial to view the IR received commands.

Is it possible to have the minimal version with the web log enabled?
by cassioac
22 Apr 2021, 14:35
Forum: ESP Easy: Projects / Applications
Topic: (Solved) IRTX plugin help
Replies: 25
Views: 32679

Re: (Solved) IRTX plugin help

Hello,

Can anyone help me with this topic?

viewtopic.php?t=2761

I'm currently using the minimal IR version of espeasy, don't know if it's the best way to go to achieve what I want to...
by cassioac
22 Apr 2021, 08:12
Forum: ESP Easy: Software
Topic: Using clock, timer and PIR to send IR transmitter command
Replies: 9
Views: 5740

Re: Using clock, timer and PIR to send IR transmitter command

I woudl start with keeping track of "not detected in last N minutes". Let's assume you get an event when receiving a PIR signal. Not sure how the event is formatted, but let's call it "PIR#value". When receiving this event, you set a timer to 60 minutes. See: https://espeasy.rea...
by cassioac
18 Apr 2021, 21:34
Forum: ESP Easy: Software
Topic: Using clock, timer and PIR to send IR transmitter command
Replies: 9
Views: 5740

Re: Using clock, timer and PIR to send IR transmitter command

Wow thanks, this forum is wow... thanks for the code... I made it work on esphome, but espeasy is more indicated for my peculiar need. esphome: name: menano-ar platform: ESP8266 board: esp01_1m # Aqui defino em qual rede o ESP8266 vai conectar wifi: ssid: "MySSID" password: "MyTopSecr...
by cassioac
18 Apr 2021, 04:32
Forum: ESP Easy: Software
Topic: IR receiver learn, store and retransmit
Replies: 1
Views: 3628

IR receiver learn, store and retransmit

Hi all, I'm new to ESPEasy and read the whole documentation but didn't see anything about IR receivers, learning codes and retransmitting. Is there a plugin for this? What I would like to do is press a button (Gpio) to put the device in "learn mode", store the code (button pressed on the r...
by cassioac
18 Apr 2021, 02:20
Forum: ESP Easy: Software
Topic: Using clock, timer and PIR to send IR transmitter command
Replies: 9
Views: 5740

Using clock, timer and PIR to send IR transmitter command

Hello all, I'm new to ESPEasy and have a question about timer and clock I want to transmit an IR code through an IR transmitter if the following criteria is met: 1. Current time must be between 10am and 2pm 2. No input from my PIR has been detected for the last 60 mins What's the best practice to ac...