Home Assistant: Setting Up Home Assistant Server HASS.IO Software
Setting Up Home Assistant Server HASS.IO
Software:
Put on case
Install Heatsinks
Connect Ethernet Cable
Connect power Adapter but don’t plug in
Take SD Card put in sd card reader and plug into computer
Follow instructions from official website:
Insert SD Card into raspberry pi
Now we need to set static IP so the pi has the same Ip address, I have done this so here is a clip from my openhab setup video, the process is the same expect look for HASS.IO instead of openhabian
Install and setup Hass configurator
More info on Hass Configurator:
Install and setup MQTT Broker
More Info on MQTT Broker:
Code in configuration.yaml file
mqtt:
broker: ipaddressofserver
Blinds control device:
cover BlindsControl1:
- platform: mqtt
name: "MK Blinds"
command_topic: "MK-SmartHouse/utilities/MK-BlindsControl1"
state_topic: "MK-SmartHouse/utilities/MK-BlindsControl1/state"
retain: true
payload_open: "0"
payload_close: "100"
payload_stop: "56"
state_open: "0"
state_closed: "100"