Dear HA community,
I am new in HA, but I was already able to install HA on Raspberry, install MQTT, flash RfBridge SONOFF, install ConBee II, and make it somehow work together in basic level. So for now, i can for example operate my switch from sending MQTT messages using mqtt.publish service (RfRaw as of course I have a full house of cheap sometimes working devices from Aliexpress) …
BUT
I still cannot find any good sources, which will explain me the logic of Home Assistant - Devices, Entities, Services … there is a zillion of configuration examples… in yaml format but where to put it ?
Example:
documentation:
"Test any changes to your configuration.yaml
file before launching Home Assistant. This script allows you to test changes without the need to restart Home Assistant.
hass --script check_config
"
but where ? how ? it looks, like terminal connection to Raspberry ? Or there is something in home assistant page ?
or
i want to create switch, so i put into configuration yaml (i know it is not correct but logic is there):
switch:
- platform: mqtt
name: “rf_switch”
unique_id: pracovna_switch
state_topic: “tele/SOR/RESULT”
value_template: “{{ value_json.RfRaw }}”
command_topic: “cmnd/SOR/RfRaw”
payload_on: “rfraw AA B0 4E 05 08 0136 0A5A 00BE 04C4 283C
481828382838283828383828382838283828283828383828382838282838382828382838283828383828382828383828283828383828283838282838283828382838 55;rfraw 177”
payload_off: “rfraw AA B0 4E 05 08 015E 0A3C 00A0 04A6 2832 481828382838283828383828382838283828283828383828382838282838382828382838283828383828382828383828283828383828283828382838283828382838 55;rfraw 177”
availability_topic: “tele/SOR/LWT”
payload_available: “Online”
payload_not_available: “Offline”
qos: 1
retain: true
optimistic: true
where the rf_switch will appear? as Entity ? as ?
Thank you for any comments, an event the RTFM one… but i really didn’t find any exact description of system - where step by step without any (must know all) gaps…