Class: FlipDeviceTrigger

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

Overview

Category: Sensors

options:

Face Up -> Face Down
Face Down -> Face Up
Any -> Face Down

Instance Attribute Summary

Attributes inherited from Trigger

#constraints

Attributes inherited from MacroObject

#options, #type

Instance Method Summary collapse

Methods inherited from Trigger

#match?

Methods inherited from MacroObject

#to_h

Constructor Details

#initialize(h = {}) ⇒ FlipDeviceTrigger

Returns a new instance of FlipDeviceTrigger.



2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
# File 'lib/ruby-macrodroid.rb', line 2250

def initialize(h={})

  options = {
    any_start: false,
    face_down: true,
    work_with_screen_off: false
  }

  super(options.merge h)

end

Instance Method Details

#to_pcObject



2262
2263
2264
# File 'lib/ruby-macrodroid.rb', line 2262

def to_pc()
  @h[:face_down] ? 'flip_device_down?' : 'flip_device_up?'
end

#to_sObject



2266
2267
2268
2269
2270
# File 'lib/ruby-macrodroid.rb', line 2266

def to_s()
  
  action = @h[:face_down] ? 'Face Up -> Face Down' : 'Face Down -> Face Up'
  'Flip Device ' + action
end