NOTICE: BigTalker 1.x (1.1.12 and prior) is no longer being maintained. It has been deprecated.
For the latest information, please see the documentation posted at: http://thingsthataresmart.wiki/index.php?title=BigTalker
and/or the latest discussion thread: https://community.smartthings.com/t/release-bigtalker-2-x/118105
.
.
Version 1.1.12 release announcement (updated post 3/12/2017 with 1.1.11 release) (updated post 3/13/2017 with 1.1.12 release)
Update 2/6/2018
- BigTalker 1.1.12 code has moved to https://github.com/rayzurbock/BigTalker
- GitHub Integration Settings have changed to:
- Owner: rayzurbock Name: BigTalker Branch: master
- Owner: rayzurbock Name: BigTalker Branch: master
- This version is no longer being maintained. BigTalker 2.0.0 is the latest release. Settings will not transfer from 1.1.12 to 2.0.0 as the app structure changes from single app to parent/child app.
- For the latest information, please see the documentation posted at: thingsthataresmart.wiki/index.php?title=BigTalker
Have you ever wanted a talking house? Now you can! With the Big Talker SmartApp ( http://github.com/rayzurbock/SmartThings-BigTalker )
When SmartThings is paired with a compatible audio device (such as a Sonos, Ubi, LANnouncer, VLCThing, AskAlexa, etc) and Big Talker SmartApp, your house can say what you want it to say when events occur.
Currently supported events:
- Time, Time of Day + Day(s) of Week
- Motion, Active/Inactive
- Switch, On/Off
- Presence, Arrive/Depart
- Lock, Lock/Unlock
- Contact, Open/Close
- Mode, Change (Home, Away, etc)
- Thermostat, Cooling/Heating/Fan/Idle(not running)
- Acceleration, Active/Inactive
- Water, Wet/Dry
- Smoke, Detect/Clear/Test
- Button, Press or Held
- Smart Home Monitor Status, Armed-Away, Armed-Home, Disarmed
Each supported event supports 3 different groups so that you can alter your spoken phrases based on which group your selection of devices is configured in (more event groups available in the 2.0 release once released!).
Voice phrases support the following variables (will be replaced with actual phrase when triggered)
%askalexa% = Send phrase to AskAlexa message queue. (Alexa, Tell SmartThings to play messages)
%devicename% = Triggering devices display name
%devicetype% = Triggering device type; motion, switch, etc…
%devicechange% = State change that occurred; on/off, active/inactive, etc…
%description% = The description of the event that is to be displayed to the user in the mobile application
%locationname% = Hub Location name; home, work, etc…
%lastmode% = Last home mode; home, away, etc…
%mode% = Current home mode; home, away, etc…
%time% = Current time; HH:mm am/pm
%shmstatus% = SmartHome Monitor Status (Disarmed, Armed Stay, Armed Away)
%weathercurrent% = Current weather (from Weather Underground; based on SmartThings Hub Zipcode)
%weathertoday% = Today’s weather forecast (from Weather Underground; based on SmartThings Hub Zipcode)
%weathertonight% = Tonight’s weather forecast (from Weather Underground; based on SmartThings Hub Zipcode)
%weathertomorrow% = Tomorrow’s weather forecast (from Weather Underground; based on SmartThings Hub Zipcode)
%weathercurrent(00000)% = Current weather (from Weather Underground; using custom Zipcode; replace 00000)
%weathertoday(00000)% = Today’s weather forecast (from Weather Underground; using custom Zipcode; replace 00000)
%weathertonight(00000)% = Tonight’s weather forecast (from Weather Underground; using custom Zipcode; replace 00000)
%weathertomorrow(00000)% = Tomorrow’s weather forecast (from Weather Underground; using custom Zipcode; replace 00000)
Note: (00000) can also be replaced by any supported location of the WeatherUnderground API such as (France/Paris), (latitude,longitude), (AirportCode), (State/City)
For example when turning off a switch named “Office Light” with a spoken phrase of %devicename% %devicetype% has been turned %devicechange%
would speak Office light switch has been turned off
.
Another example would be to create a simulated switch that is turned ON in the morning by your Good Morning routine, and then OFF at night with your Good Night routine. Then set up a Big Talker switch event group tied to that switch’s ON event that speaks Good Morning. %weathercurrent% %weathertoday%
Keep in mind, if you configure highly active or too many devices, it may get annoying!! We had a family gathering and the kids kept going in/out the back door to play in the yard. “Back Door has been opened, Back Door has been closed, Back Door has been opened, you get the idea.” I wouldn’t configure chatty motion sensors either, but that’s up to you.
Have Fun!
Support the project (optional)
This SmartApp is free. Donations to support development efforts are accepted via (non-refundable, no guarantee of service/support):
- Link: Pay $Lowrance on Cash App (Debit cards = free, Credit cards charge 3% on top of your donation)
- PayPal to: rayzur [at] rayzurbock.com
- Link: PayPal Donation (for supporters with or without a Paypal account)
- Link: Square Marketplace (Donation is reduced by 2.9% + .30)
ISSUES?
Please check the latest posts below for known issues and file bug reports / feature requests on GitHub for better tracking here:
https://github.com/rayzurbock/SmartThings-BigTalker/issues
NOTE: For Ubi, be sure to first install the Ubi Device Handler and App
https://github.com/jodyalbritton/smartthings/tree/master/theubi
NOTE: For VLCThing, be sure to first install the VLCThing Device Handler
NOTE: For LANnouncer, be sure to install the LANnouncer Device Handler and Android App
http://www.keybounce.com/LANdroidHowTo/LANdroid.html
Some of the changes since 1.1.8 include (1.1.9 was a development version (Major thanks to all of the alpha/beta testers!! Thank You!!!); 1.1.12 is the latest release as of this post date, the update flag is now being flown for version 1.1.11 and prior):
- Additional Talk() debug logging
- Test variables for null with safe navigation operator (?) in more places within Talk().
- Attempt to resolve musicPlayer playing text and resuming/restoring.
- Clear state.polledDevices on initialize
- In musicPlayer mode, def Talk() now gives currentTrack.status precedence over currentStatus if it exists as it seems more accurate in testing based on feedback.
- If default speech volume was not set, speech may not have occurred due to a null variable issue. Resolved with groovy safe navigation operator
- Partnered with @MichaelS; Added AskAlexa support (send phrase to AskAlexa queue) with %askalexa% in the phrase.
- Removed requirement to set a speechDevice for users that only wish to use another supported SmartApp to offload/handle the speech - (currently only AskAlexa)
- Added Smart Home Monitor (Dashboard) status events (speak on Arm-Away, Arm-Stay, Disarm)
- Device/SmartApp output detection logging (did we send to a device? did we only send to a SmartApp (AskAlexa), did we send a phrase but didn’t send to a device or another SmartApp?)
- Option to disable resume globally and/or per event.
- A lot of work on Talk() and others
- Pulled the code into Notepad++ where I could work with it better, collapse conditions, etc.
- Found several bugs in the Talk() function that I didn’t see otherwise. Squashed.
- Added a “Poll Now” toggle to the BT main screen, when in Debug and musicPlayer mode.
- Added option to disable periodic polling for musicPlayer mode (some users were concerned with BigTalker showing up in the “Activity” feed so often. If music starts playing after speech when it wasn’t before, please make sure that polling is enabled)
- When resume is enabled and in musicPlayer mode and in Debug mode, main menu now has an option to cause an instant poll “DEBUG: Poll Now (simply toggle)”.
- Corrected a missed null check in Talk() regarding an empty phrase.
- Added a null check in Talk() for resume var.
- Added logging and in-app notification if Talk() is called on an empty phrase.
- Added Button Held event. (needs testing. I do not have a zwave button)
- Renamed SHM Stay to SHM Home to match the language in the SmartApp Dashboard.
- Additional null checks in Talk() (specifically addressed if the desired phrase only had %askalexa%; throw an error in the logs and notify via push that there is a configuration error due to a missing phrase)
Report Issues: https://github.com/rayzurbock/SmartThings-BigTalker/issues
When reporting issues, please include the version of BigTalker that you are using. This can be found in the IDE logs with each BigTalker posted event or in the SmartThings App > Automation > BigTalker > Scroll down to the last line on the main menu under About.
If you do not have a GitHub account and do not wish to create one, you can PM me here in the community (@rayzurbock). I’d rather have one of these two methods for troubleshooting bugs and such (preferably GitHub) rather than have to scan through and try to mentally organize this thread into various issues/subjects.
If you have trouble and need assistance, please enable debug logging within BigTalker. SmartThings > Automation > SmartApps > BigTalker > Configure Defaults > Enable debug logging. Then when reporting issues, please submit any relevant logs which can be seen in realtime at https://graph.api.smartthings.com/ide/logs (This version is no longer maintained).
(updated post 3/12/2017 with 1.1.10 release)
(updated post 3/12/2017 with 1.1.11 release - Bugfix)
(updated post 3/13/2017 with 1.1.12 release - Bugfix)