Class: SetScreenTimeoutAction
- Inherits:
-
ScreenAction
- Object
- MacroObject
- Action
- ScreenAction
- SetScreenTimeoutAction
- Defined in:
- lib/ruby-macrodroid.rb
Overview
Category: Screen
Instance Attribute Summary
Attributes inherited from MacroObject
Instance Method Summary collapse
-
#initialize(h = {}) ⇒ SetScreenTimeoutAction
constructor
A new instance of SetScreenTimeoutAction.
Methods inherited from Action
Methods inherited from MacroObject
Constructor Details
#initialize(h = {}) ⇒ SetScreenTimeoutAction
Returns a new instance of SetScreenTimeoutAction.
3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 |
# File 'lib/ruby-macrodroid.rb', line 3499 def initialize(h={}) = { timeout_delay_string: '1 Minute', timeout_delay: 60, custom_value_delay: 0 } super(.merge h) end |