alexatts – Diff between revs 2 and 4

Subversion Repositories:
Rev:
Only display areas with differencesIgnore whitespace
Rev 2 Rev 4
1 ########################################################################### 1 ###########################################################################
2 ## Copyright (C) Wizardry and Steamworks 2018 - License: GNU GPLv3 ## 2 ## Copyright (C) Wizardry and Steamworks 2020 - 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   6  
7 log: "alexatts.log" 7 log: 'alexatts.log'
8   8  
9 mqtt: 9 mqtt:
10 url: "mqtt://server.tld" 10 url: 'mqtt://server.tld'
11 # The topic to subscribe to. 11 # The topic to subscribe to.
12 topic: "alexatts/#" 12 topic: 'alexatts/#'
13   13  
14 language: 'en-US' 14 language: 'en-US'
-   15  
15   16 tts:
16 # The audio card to use in Alsa format (aplay should work) 17 # Possible values: google, picotts
-   18 use: 'google'
-   19 google:
-   20 maxLength: 100
17 card: 'sysdefault:CARD=audioinjectorpi' 21 speed: 1
18   22  
19 # The GPIO configuration maps the remote control buttons to GPIO pins as 23 # The GPIO configuration maps the remote control buttons to GPIO pins as
20 # they are cabled between the device that the software runs on and the 24 # they are cabled between the device that the software runs on and the
21 # Alexa remote. 25 # Alexa remote.
22 # ptt - push to talk, this is the top most button 26 # ptt - push to talk, this is the top most button
23 GPIO: 27 GPIO:
24 ptt: 16 28 ptt: 16
25   29  
26 # This is the name of the Alexa device - the keyword you use to talk to 30 # This is the name of the Alexa device - the keyword you use to talk to
27 # the Alexa device. 31 # the Alexa device.
28 alexa: 'Alexa' 32 alexa: 'Alexa'
29   33