Method: VolumeButtonTrigger#initialize

Defined in:
lib/ruby-macrodroid.rb

#initialize(h = {}) ⇒ VolumeButtonTrigger

Returns a new instance of VolumeButtonTrigger.



1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
# File 'lib/ruby-macrodroid.rb', line 1125

def initialize(h={})

  options = {
    dont_change_volume: true,
    monitor_option: 1,
    not_configured: false,
    option: 0
  }

  super(options.merge h)

end