Class: ProximityTrigger

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

Overview

Category: Sensors

Instance Attribute Summary

Attributes inherited from MacroObject

#options, #type

Instance Method Summary collapse

Methods inherited from Trigger

#match?

Methods inherited from MacroObject

#to_h, #to_s

Constructor Details

#initialize(h = {}) ⇒ ProximityTrigger

Returns a new instance of ProximityTrigger.



1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
# File 'lib/ruby-macrodroid.rb', line 1964

def initialize(h={})

  options = {
    near: true,
    selected_option: 0
  }

  super(options.merge h)

end