HomeAssistant (HASS)
- Smart Plug Dimmer
- Power Strip *
- Inovelli On/Off
- Inovelli Dimmer
- Inovelli Bulbs
/home/homeassistant/.homeassistant
sudo systemctl restart [email protected]
https://www.home-assistant.io/docs/installation/virtualenv#upgrade https://www.home-assistant.io/docs/installation/raspberry-pi/#updating
- sudo su - homeassistant
- source /srv/homeassistant/bin/activate
- python3 -m pip install --upgrade homeassistant
- or pip3 install --upgrade homeassistant
journalctl -u [email protected]
https://github.com/home-assistant/home-assistant-cli
https://bytefreaks.net/programming-2/how-to-undo-a-git-commit-that-was-not-pushed Method 1: Undo commit and keep all files staged git reset --soft HEAD~;
Method 2: Undo commit and unstage all files git reset HEAD~;
Method 3: Undo the commit and completely remove all changes git reset --hard HEAD~;