Class: WifiHotSpotConstraint

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

Overview

Category: Connectivity

Instance Attribute Summary

Attributes inherited from MacroObject

#options, #type

Instance Method Summary collapse

Methods inherited from Constraint

#match?

Methods inherited from MacroObject

#to_h, #to_s

Constructor Details

#initialize(h = {}) ⇒ WifiHotSpotConstraint

Returns a new instance of WifiHotSpotConstraint.



4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
# File 'lib/ruby-macrodroid.rb', line 4239

def initialize(h={})

  options = {
    check_connections: false,
    comparison_value: 0,
    connected_count: 0,
    enabled: true
  }

  super(options.merge h)

end