Class: WeatherTrigger
- Inherits:
-
Trigger
- Object
- MacroObject
- Trigger
- WeatherTrigger
- Defined in:
- lib/ruby-macrodroid.rb
Overview
Category: Location
Instance Attribute Summary
Attributes inherited from Trigger
Attributes inherited from MacroObject
Instance Method Summary collapse
-
#initialize(h = {}) ⇒ WeatherTrigger
constructor
A new instance of WeatherTrigger.
Methods inherited from Trigger
Methods inherited from MacroObject
Constructor Details
#initialize(h = {}) ⇒ WeatherTrigger
Returns a new instance of WeatherTrigger.
2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 |
# File 'lib/ruby-macrodroid.rb', line 2051 def initialize(h={}) = { humidity_above: true, humidity_value: 50, option: 4, temp_below: true, temp_celcius: true, temperature: 0, weather_condition: 0, wind_speed_above: true, wind_speed_value: 0, wind_speed_value_mph: 0 } super(.merge h) end |