Class: Artoo::Adaptors::Pebble

Inherits:
Adaptor
  • Object
show all
Defined in:
lib/artoo/adaptors/pebble.rb

Overview

Connect to a pebble device

See Also:

  • documentation for more information

Constant Summary collapse

RETRY_COUNT =

Number of retries when connecting

5

Instance Attribute Summary collapse

Instance Method Summary collapse

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(method_name, *arguments, &block) ⇒ Object

Uses method missing to call device actions

See Also:



51
52
53
# File 'lib/artoo/adaptors/pebble.rb', line 51

def method_missing(method_name, *arguments, &block)
  pebble.send(method_name, *arguments, &block)
end

Instance Attribute Details

#pebbleObject (readonly)

Returns the value of attribute pebble.



9
10
11
# File 'lib/artoo/adaptors/pebble.rb', line 9

def pebble
  @pebble
end

Instance Method Details

#connectBoolean

Creates a connection with device

Returns:

  • (Boolean)


22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# File 'lib/artoo/adaptors/pebble.rb', line 22

def connect
  @retries_left = RETRY_COUNT
  require 'pebble' unless defined?(::Pebble)
  begin
    @pebble = ::Pebble::Watch.new(parent.connection_id, connect_to)
    @pebble.connect
    super
    return true
  rescue Errno::EBUSY, Errno::ECONNREFUSED => e
    @retries_left -= 1
    if @retries_left > 0
      retry
    else
      Logger.error e.message
      Logger.error e.backtrace.inspect
      return false
    end
  end
end

#disconnectBoolean

Closes connection with device

Returns:

  • (Boolean)


44
45
46
47
# File 'lib/artoo/adaptors/pebble.rb', line 44

def disconnect
  pebble.disconnect if connected?
  super
end

#finalizeBoolean

Closes connection with device if connected

Returns:

  • (Boolean)


16
17
18
# File 'lib/artoo/adaptors/pebble.rb', line 16

def finalize
  pebble.disconnect if connected?
end