Changes between Version 13 and Version 14 of WikiStart


Ignore:
Timestamp:
2012-09-09 21:39:29 (12 years ago)
Author:
guessed
Comment:

Provide pointers to the WUI Documentation for Condition/Forecast? phrases for Scene scripting

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v13 v14  
    3030 
    3131= Scene Scripting = 
    32 The Weather Plugin exposes a number of Variables, as is illustrated in the Install instructions.  These variables can be accessed in Luup scenes using code illustrated here: 
    33   * http://wiki.micasaverde.com/index.php/Luup_Variables#Weather_Plugin 
     32The Weather Plugin exposes a number of Variables: 
     33 *  `Condition` (String) something representing the current Weather state.[[br]] 
     34 *  `WindCondition` (String) a value like "`W at 2 mph`". 
     35 *  `WindSpeed` (Number) a value like "`2`" extracted from the `WindCondition`, specified in Local units (either kph or mph depending upon the setting of `Metric`) 
     36 *  `WindDirection` (String) a value like "`West`, `NW`, `North`, etc" 
     37 *  `Period` (Number) the number of seconds to delay before automatically polling the Weather feed.  If blank, the default is 1800 seconds (30 minutes).  This value cannot be < 10 or > 3600. 
     38 
     39These variables can be accessed in Luup scenes using code illustrated here: 
     40  * [http://wiki.micasaverde.com/index.php/Luup_Variables#Weather_Plugin Weather Plugin in Scenes] 
    3441 
    3542Further examples can be found in the Discussion area referenced below. 
     43 
     44The condition phrases are listed on the WUI site: 
     45  * [http://www.wunderground.com/weather/api/d/docs?d=resources/phrase-glossary#current_condition_phrases Current Condition Phrases] 
     46  * [http://www.wunderground.com/weather/api/d/docs?d=resources/phrase-glossary#forecast_description_phrases Forecast Condition Phrases] 
    3647 
    3748= Discussion =