Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/unreal4u/rpi3-playroom-light
Scripts that control the light in my daughter's playroom
https://github.com/unreal4u/rpi3-playroom-light
Last synced: 14 days ago
JSON representation
Scripts that control the light in my daughter's playroom
- Host: GitHub
- URL: https://github.com/unreal4u/rpi3-playroom-light
- Owner: unreal4u
- Created: 2019-05-31T14:45:49.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-05-31T14:51:13.000Z (over 5 years ago)
- Last Synced: 2024-11-09T13:46:47.183Z (2 months ago)
- Language: PHP
- Size: 264 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Raspberry Pi 3 Light Controller
===========This pure PHP implementation will read out an MQTT broker topic + a button. Depending on the input, it will control a relay,
allowing for a light to be turned on or off.It will additionally inform a MQTT broker of the sensors and commands that are being sent.
Used materials
--------The materials used for this build are the following:
TODO
* [Relay](https://www.aliexpress.com/item/Freeshipping-New-5V-2-Channel-Relay-Module-Shield-for-Arduino/1726504761.html?spm=a2g0s.9042311.0.0.27424c4dkd67Cr)
* Raspberry Pi 3b+ (Although any old rPi should be able to handle this program)Schematics
--------TODO
**Disclaimer**: Please ignore any errors in above drawing, I'm not an electrician. That being said, above diagram is
used to control devices dealing with AC voltage, if you don't even know what "AC" means, DO NOT use this guide and hire
somebody that knows about it![AC voltages *CAN* kill you!](https://www.youtube.com/watch?v=trmxzUVT2eE)
[You don't believe me?](https://www.youtube.com/watch?v=snk3C4m44SY)Pin layout is based on this diagram:
![GPIO pin diagram](/rpi3-gpio-pins.png)How to run the program
--------This program consists of 3 scripts.
I would very much have liked to use the inotify extension, but sadly I couldn't get it running on my rpi.
TODO
This script is run with sudo because it needs access to the GPIO. There might be more elegant ways to solve this issue,
but this one is the first one that came up to me and it works.Other information
--------Check out [PHP/GPIO](https://github.com/PiPHP/GPIO), without that repo, this would be impossible in its current form.