#Board01 Alpha mqtt: host: MQTT Broker IP addresss Here port: 1883 user: "************" password: "****************" topic_prefix: alarm #This exposes home-assistant discovery to make it easier for Home Assistant to see the published topics ha_discovery: enabled: yes gpio_modules: - name: rpi module: raspberrypi #Digital Outputs List #This is where the relay triggers are #Hash "#" the Relays you will NOT use otherwise they will appear in Home Assistant digital_outputs: #GPIO8 is an output connected to Relay 1 #mqtt topic published is alarm/output/relay01 - name: relay01 module: rpi pin: 8 #GPIO7 is an output connected to Relay 2 #mqtt topic published is alarm/output/relay02 - name: relay02 module: rpi pin: 7 #Digital Inputs List #This is where the PIR's are #Hash "#" the PIR zones you will NOT use otherwise they will appear as in a "motion detected" state digital_inputs: #Zone 1 is connected to Pi Pin 15 (GPIO 22) is an input connected to the Front Door PIR #mqtt topic published is alarm/input/pir01 - name: pir01 module: rpi pin: 22 on_payload: "Motion Detected" off_payload: "Clear" pullup: yes pulldown: no #Zone 2 is connected to Pi Pin 13 (BCM 27) is an input connected to the Lounge PIR #mqtt topic published is alarm/input/pir02 - name: pir02 module: rpi pin: 27 on_payload: "Motion Detected" off_payload: "Clear" pullup: yes pulldown: no #Zone 3 is connected to Pi Pin 11 (BCM 17) is an input connected to the Kitchen PIR #mqtt topic published is alarm/input/pir03 - name: pir03 module: rpi pin: 17 on_payload: "Motion Detected" off_payload: "Clear" pullup: yes pulldown: no #Zone 4 is connected to Pi Pin 7 (BCM 4) is an input connected to the XXXXXX PIR #mqtt topic published is alarm/input/pir04 - name: pir04 module: rpi pin: 4 on_payload: "Motion Detected" off_payload: "Clear" pullup: yes pulldown: no #Zone 5 is connected to Pi Pin 12 (BCM 18) is an input connected to the XXXXXX PIR #mqtt topic published is alarm/input/pir05 - name: pir05 module: rpi pin: 18 on_payload: "Motion Detected" off_payload: "Clear" pullup: yes pulldown: no #Zone 6 is connected to Pi Pin 16 (BCM 23) is an input connected to the XXXXXX PIR #mqtt topic published is alarm/input/pir06 - name: pir06 module: rpi pin: 23 on_payload: "Motion Detected" off_payload: "Clear" pullup: yes pulldown: no #Zone 7 is connected to Pi Pin 18 (BCM 24) is an input connected to the XXXXXX PIR #mqtt topic published is alarm/input/pir07 - name: pir07 module: rpi pin: 24 on_payload: "Motion Detected" off_payload: "Clear" pullup: yes pulldown: no #Zone 8 is connected to Pi Pin 22 (BCM 25) is an input connected to the XXXXXX PIR #mqtt topic published is alarm/input/pir08 - name: pir08 module: rpi pin: 25 on_payload: "Motion Detected" off_payload: "Clear" pullup: yes pulldown: no #Zone 9 is connected to Pi Pin 32 (BCM 12) is an input connected to the XXXXXX PIR #mqtt topic published is alarm/input/pir09 - name: pir09 module: rpi pin: 12 on_payload: "Motion Detected" off_payload: "Clear" pullup: yes pulldown: no #Zone 10 is connected to Pi Pin 36 (BCM 16) is an input connected to the XXXXXX PIR #mqtt topic published is alarm/input/pir10 - name: pir10 module: rpi pin: 16 on_payload: "Motion Detected" off_payload: "Clear" pullup: yes pulldown: no #Zone 11 is connected to Pi Pin 38 (BCM 20) is an input connected to the XXXXXX PIR #mqtt topic published is alarm/input/pir11 - name: pir11 module: rpi pin: 20 on_payload: "Motion Detected" off_payload: "Clear" pullup: yes pulldown: no #Zone 12 is connected to Pi Pin 40 (BCM 21) is an input connected to the XXXXXX PIR #mqtt topic published is alarm/input/pir12 - name: pir12 module: rpi pin: 21 on_payload: "Motion Detected" off_payload: "Clear" pullup: yes pulldown: no #Zone 13 is connected to Pi Pin 37 (BCM 26) is an input connected to the XXXXXX PIR #mqtt topic published is alarm/input/pir13 - name: pir13 module: rpi pin: 26 on_payload: "Motion Detected" off_payload: "Clear" pullup: yes pulldown: no #Zone 14 is connected to Pi Pin 35 (BCM 19) is an input connected to the XXXXXX PIR #mqtt topic published is alarm/input/pir14 - name: pir14 module: rpi pin: 19 on_payload: "Motion Detected" off_payload: "Clear" pullup: yes pulldown: no #Zone 15 is connected to Pi Pin 33 (BCM 13) is an input connected to the XXXXXX PIR #mqtt topic published is alarm/input/pir15 - name: pir15 module: rpi pin: 13 on_payload: "Motion Detected" off_payload: "Clear" pullup: yes pulldown: no #Zone 16 is connected to Pi Pin 31 (BCM 6) is an input connected to the XXXXXX PIR #mqtt topic published is alarm/input/pir16 - name: pir16 module: rpi pin: 6 on_payload: "Motion Detected" off_payload: "Clear" pullup: yes pulldown: no #Zone 17 is connected to Pi Pin 29 (BCM 5) is an input connected to the XXXXXX PIR #mqtt topic published is alarm/input/pir17 - name: pir17 module: rpi pin: 5 on_payload: "Motion Detected" off_payload: "Clear" pullup: yes pulldown: no #Zone 18 is connected to Pi Pin 23 (BCM 11) is an input connected to the XXXXXX PIR #mqtt topic published is alarm/input/pir18 - name: pir18 module: rpi pin: 11 on_payload: "Motion Detected" off_payload: "Clear" pullup: yes pulldown: no #Zone 19 is connected to Pi Pin 21 (BCM 9) is an input connected to the XXXXXX PIR #mqtt topic published is alarm/input/pir19 - name: pir19 module: rpi pin: 9 on_payload: "Motion Detected" off_payload: "Clear" pullup: yes pulldown: no #Zone 20 is connected to Pi Pin 19 (BCM 10) is an input connected to the XXXXXX PIR #mqtt topic published is alarm/input/pir20 - name: pir20 module: rpi pin: 10 on_payload: "Motion Detected" off_payload: "Clear" pullup: yes pulldown: no