Class: CameraFlashLightAction

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

Overview

Category: Device Settings

Instance Attribute Summary

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 = {}) ⇒ CameraFlashLightAction

Returns a new instance of CameraFlashLightAction.



2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
# File 'lib/ruby-macrodroid.rb', line 2367

def initialize(h={})

  options = {
    launch_foreground: false,
    state: 0
  }

  super(options.merge h)

end

Instance Method Details

#to_pc ⇒ Object



2378
2379
2380
# File 'lib/ruby-macrodroid.rb', line 2378

def to_pc()
  'torch :on'
end

#to_s ⇒ Object



2382
2383
2384
# File 'lib/ruby-macrodroid.rb', line 2382

def to_s()
  'Torch On'
end