Sensor library

Dependencies:   HeptaCamera_GPS Hepta9axis HeptaTemp

Dependents:   Lab5-04_a_uplink_downlink_xbee_1 Lab4-03_detect_acceleration Lab4-08_detect_gps_rawdata Lab4_11_create_satellite_program_step5_Q ... more

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers HEPTA_SENSOR.h Source File

HEPTA_SENSOR.h

00001 #ifndef MBED_HEPTASENSOR_H
00002 #define MBED_HEPTASENSOR_H
00003 #include "HeptaCamera_GPS.h"
00004 #include "Hepta9axis.h"
00005 #include "HeptaTemp.h"
00006 
00007 class HEPTA_SENSOR : public HeptaCamera_GPS ,public Hepta9axis, public HeptaTemp
00008 {
00009 public:
00010     HEPTA_SENSOR(
00011         PinName adcon,
00012         PinName sda,PinName scl,int aaddr,int agaddr, int amaddr,
00013         PinName tx,PinName rx,PinName sw1,PinName sw2
00014     );
00015 
00016 private:
00017 };
00018 
00019 #endif