Skip to content

Latest commit

 

History

History
37 lines (35 loc) · 773 Bytes

README.md

File metadata and controls

37 lines (35 loc) · 773 Bytes

Create rf_coder.ini

[CODES]
;
pi3kitchen_on = xxx
pi3kitchen_off = xxx
;
stammen_pink_on = xxx
stammen_pink_off = xxx
;
stammen_green_on = xxx
stammen_green_off = xxx

Enable SPI Interface

sudo raspi-config
  • Select Interface Options
  • Select SPI
  • Select Enable

Create, enable and start services

  • Copy home_remote.sevices file.
    cd home_remote
    sudo cp linux-services/home_remote.service /etc/systemd/system/home_remote.service
  • Customize path to main.py and the WorkingDirectory.
    sudo nano /etc/systemd/system/home_remote.service
  • Start and enable service.
    sudo systemctl enable home_remote.service
    sudo systemctl start home_remote.service