Class: SpeakTextAction

Inherits:
DeviceAction show all
Defined in:
lib/ruby-macrodroid.rb

Overview

Category: Device Actions

Instance Attribute Summary

Attributes inherited from Action

#constraints

Attributes inherited from MacroObject

#options, #type

Instance Method Summary collapse

Methods inherited from Action

#invoke

Methods inherited from MacroObject

#to_h

Constructor Details

#initialize(h = {}) ⇒ SpeakTextAction

Returns a new instance of SpeakTextAction.



2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
# File 'lib/ruby-macrodroid.rb', line 2868

def initialize(h={})

  options = {
    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(options.merge h)

end

Instance Method Details

#to_sObject



2885
2886
2887
# File 'lib/ruby-macrodroid.rb', line 2885

def to_s()
  "Speak Text (%s)" % @h[:text_to_say]
end