cool-iot – Blame information for rev 2

Subversion Repositories:
Rev:
Rev Author Line No. Line
2 office 1 ###########################################################################
2 ## Copyright (C) Wizardry and Steamworks 2018 - License: GNU GPLv3 ##
3 ## Please see: http://www.gnu.org/licenses/gpl.html for legal details, ##
4 ## rights of fair usage, the disclaimer and warranty conditions. ##
5 ###########################################################################
6  
7 mqtt:
8 url: "mqtt://joey.internal"
9 # The topic to subscribe to.
10 topic: "cool-1/#"
11  
12 # The GPIO configuration maps the remote control buttons to GPIO pins as
13 # they are cabled between the device that the software runs on and the
14 # universal remote control.
15 # search - the button for discovering the air conditioner frequency
16 # switch - the on/off button
17 # up - the button that turns up the heat
18 # down - the button that turns down the heat
19 # cooling - the colling button
20 # heating - the heating button
21 # mode - the mode button
22 # swing - the swing button
23 # swipe - the swipe button
24 # fan - the fan button
25 GPIO:
26 search: 16
27 switch: 20
28 up: -1
29 down: -1
30 cooling: -1
31 heating: -1
32 mode: -1
33 swing: -1
34 swipe: -1
35 fan: -1
36