cool-iot – Blame information for rev 5

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  
5 office 7 log: "cool-iot.log"
8  
2 office 9 mqtt:
10 url: "mqtt://joey.internal"
11 # The topic to subscribe to.
12 topic: "cool-1/#"
13  
14 # The GPIO configuration maps the remote control buttons to GPIO pins as
15 # they are cabled between the device that the software runs on and the
16 # universal remote control.
17 # search - the button for discovering the air conditioner frequency
18 # switch - the on/off button
19 # up - the button that turns up the heat
20 # down - the button that turns down the heat
21 # cooling - the colling button
22 # heating - the heating button
23 # mode - the mode button
24 # swing - the swing button
25 # swipe - the swipe button
26 # fan - the fan button
27 GPIO:
28 search: 16
29 switch: 20
30 up: -1
31 down: -1
32 cooling: -1
33 heating: -1
34 mode: -1
35 swing: -1
36 swipe: -1
37 fan: -1
38