Changes between Version 21 and Version 22 of WikiStart


Ignore:
Timestamp:
2012-12-30 23:04:46 (11 years ago)
Author:
guessed
Comment:

Add stub documentation for the Say action.

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v21 v22  
    9696 * If you know the length of the track being played you can set a delay to occur[[BR]]e.g 3.45mins and set another file to play. 
    9797 
     98=== Making a Sonos "Say" something === 
     99The Sonos plugin exposes Text to Speech capability through Google's service.  The functionality is exposed declaratively through the ''Say'' action under Advanced Scenes. 
     100The functionality is also exposed programmatically via Lua code: 
     101{{{ 
     102luup.call_action("urn:micasaverde-com:serviceId:Sonos1", "Say", 
     103                 {Text="Welcome Home", Language="en", Volume=50, Devices="667,668"}, 
     104                 666) 
     105}}} 
     106 
     107Notes: 
     108 * This service may be removed at any time, as can happen with Google services. 
     109 * Parameters not specified will default internally. (''Language=en'', ''Devices=""'', ''Volume=50'') 
     110 
     111 
    98112== Service Variables == 
    99113