Class: ScreenOnAction
- Inherits:
-
ScreenAction
- Object
- MacroObject
- Action
- ScreenAction
- ScreenOnAction
- Defined in:
- lib/ruby-macrodroid.rb
Overview
Category: Screen
Instance Attribute Summary
Attributes inherited from MacroObject
Instance Method Summary collapse
-
#initialize(h = {}) ⇒ ScreenOnAction
constructor
A new instance of ScreenOnAction.
Methods inherited from Action
Methods inherited from MacroObject
Constructor Details
#initialize(h = {}) ⇒ ScreenOnAction
Returns a new instance of ScreenOnAction.
2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 |
# File 'lib/ruby-macrodroid.rb', line 2914 def initialize(h={}) = { pie_lock_screen: false, screen_off: true, screen_off_no_lock: false, screen_on_alternative: false } super(.merge h) end |