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

HEPTA_SENSOR.h

Committer:
RyusukeIwata
Date:
22 months ago
Revision:
13:8402214a0b6b
Parent:
12:228ed878d0df

File content as of revision 13:8402214a0b6b:

#ifndef MBED_HEPTASENSOR_H
#define MBED_HEPTASENSOR_H
#include "HeptaCamera_GPS.h"
#include "Hepta9axis.h"
#include "HeptaTemp.h"

class HEPTA_SENSOR : public HeptaCamera_GPS ,public Hepta9axis, public HeptaTemp
{
public:
    HEPTA_SENSOR(
        PinName adcon,
        PinName sda,PinName scl,int aaddr,int agaddr, int amaddr,
        PinName tx,PinName rx,PinName sw1,PinName sw2
    );

private:
};

#endif