Class: SpeakTextAction
- Inherits:
-
DeviceAction
- Object
- MacroObject
- Action
- DeviceAction
- SpeakTextAction
- Defined in:
- lib/ruby-macrodroid.rb
Overview
Category: Device Actions
Instance Attribute Summary
Attributes inherited from Action
Attributes inherited from MacroObject
Instance Method Summary collapse
-
#initialize(h = {}) ⇒ SpeakTextAction
constructor
A new instance of SpeakTextAction.
- #to_s ⇒ Object
Methods inherited from Action
Methods inherited from MacroObject
Constructor Details
#initialize(h = {}) ⇒ SpeakTextAction
Returns a new instance of SpeakTextAction.
2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 |
# File 'lib/ruby-macrodroid.rb', line 2975 def initialize(h={}) = { text_to_say: '', queue: false, read_numbers_individually: false, specify_audio_stream: false, speed: 0.99, pitch: 0.99, wait_to_finish: false, audio_stream: 0 } super(.merge h) end |
Instance Method Details
#to_s ⇒ Object
2992 2993 2994 |
# File 'lib/ruby-macrodroid.rb', line 2992 def to_s() "Speak Text (%s)" % @h[:text_to_say] end |