cool-iot – Diff between revs 2 and 5

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