Feature #1191
closedAdd pwremote to imlightsw repo
100%
Description
This will be a simple Arduino controller, based on ESP01 (because I have lots of those), that controls off-the-shelf 433MHz outlets.
I will use the ESP8266 Remote Controlled Sockets tutorial as an outline.The code will require
- rc-switch as a submodule
- A receiver app, pwscan , for scanning for a remote's codes. The code for this is in the tutorial.
- An Ironman sensor, pwremote , that actually controls the outlets and integrates with IronMan. The signalling code is in the tutorial example for sending commands.
This will have a unique requirement: a shared submodule for rc-switch. Since both apps needs to use it, I will need to put both apps in a subdir, pwrmgmt, which will hold the app directories and the submodule. The pwrmgmt.mk will cd into pwrmgmt directory and build the APP=<> app.
pwremote and pwscan require- ESP01
- Mains power to 3.3V for the ESP01
- Possible antenna extension?
It might be possible to put both into a single app with a push button/switch the toggles the boot mode. But that probably won't help unless I add some web service code to display the codes it finds. It also might not work because I need to use a button/toggle to switching between operational mode and pairing mode and there are not enough GPIOs for that. I would need to add some kind of I2C device or maybe just an xor in hardware or something.