Class: Artoo::Drivers::ArdroneNavigation

Inherits:
Driver
  • Object
show all
Defined in:
lib/artoo/drivers/ardrone_navigation.rb

Overview

Ardrone navigation driver behaviors

Instance Attribute Summary

Attributes inherited from Driver

#parent

Instance Method Summary collapse

Methods inherited from Driver

#connection, #event_topic_name, #initialize, #interval, #method_missing, #pin

Methods included from Celluloid

#timers

Constructor Details

This class inherits a constructor from Artoo::Drivers::Driver

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Artoo::Drivers::Driver

Instance Method Details

#handle_updateObject



15
16
17
18
# File 'lib/artoo/drivers/ardrone_navigation.rb', line 15

def handle_update
  navdata = connection.receive_data
  publish(event_topic_name("update"), navdata)
end

#start_driverObject



7
8
9
10
11
12
13
# File 'lib/artoo/drivers/ardrone_navigation.rb', line 7

def start_driver
  every(interval) do
    handle_update
  end

  super
end