Class: SetWifiAction

Inherits:
ConnectivityAction 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 Action

#invoke

Methods inherited from MacroObject

#to_h

Constructor Details

#initialize(h = {}) ⇒ SetWifiAction

Returns a new instance of SetWifiAction.



2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
# File 'lib/ruby-macrodroid.rb', line 2337

def initialize(h={})

  options = {
    ssid: '[Select Wifi]',
    network_id: 0,
    state: 0
  }

  super(options.merge h)

end

Instance Method Details

#to_sObject



2349
2350
2351
2352
# File 'lib/ruby-macrodroid.rb', line 2349

def to_s()
  action = @h[:state] == 0 ? 'Enable' : 'Disable'
  action + ' Wifi'
end