|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- remote control devices via infra-red using a timer and web requests.
-
-
- ```
- sudo apt install git python3-pip lirc
- ```
-
- ### Clone this repo
-
- ```
- cd /home/pi
- git clone https://git.notice.at/redplanet/ir-remote-timer.git
- cd ir-remote-timer
- ```
-
- ### install pip modules
-
- ```
- pip3 install -r requirements.txt
- ```
-
-
- ### add systemd service
-
- ```
- sudo cp ir-remote-timer.service /lib/systemd/system/ir-remote-timer.service
- sudo systemctl daemon-reload
- sudo systemctl enable ir-remote-timer.service
- ```
-
-
-
- ### Setting up the infrared
- Use `irrecord` to create a lirc Config file. You need an ir receiver for that.
- `sudo irrecord -d /dev/lirc0`
- and copy the generated file in
- `/etc/lirc/lircd.conf.d/your-remotes-name.lircd.conf`
-
- remove devinput
- `mv /etc/lirc/lircd.conf.d/devinput.lircd.conf /etc/lirc/lircd.conf.d/devinput.lircd.conf.dist`
-
- Add following lines to `/etc/modules`
- ```
- lirc_dev
- lirc_rpi gpio_out_pin=22
- ```
- https://indibit.de/raspberry-pi-mit-lirc-infrarot-befehle-senden-irsend/
|