For Hepta-Sat Lite
Dependencies: Hepta6axis HeptaTemp
Dependents: Lab4-00_measure_temperature_lite Lab4-01_measure_acceleration_lite Lab4-03_create_satcode_step5_lite Lab4-03_create_satcode_step5_lite_Q ... more
HEPTA_SENSOR.h@9:b8c9e956e3b5, 2021-08-17 (annotated)
- Committer:
- heptasat2021
- Date:
- Tue Aug 17 10:51:13 2021 +0000
- Revision:
- 9:b8c9e956e3b5
- Parent:
- 0:3248c516dd77
For Hepta-Sat Lite
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
HeptaSatTraining2019 | 0:3248c516dd77 | 1 | #ifndef MBED_HEPTASENSOR_H |
HeptaSatTraining2019 | 0:3248c516dd77 | 2 | #define MBED_HEPTASENSOR_H |
heptasat2021 | 9:b8c9e956e3b5 | 3 | //#include "HeptaCamera_GPS.h" |
heptasat2021 | 9:b8c9e956e3b5 | 4 | #include "Hepta6axis.h" |
HeptaSatTraining2019 | 0:3248c516dd77 | 5 | #include "HeptaTemp.h" |
HeptaSatTraining2019 | 0:3248c516dd77 | 6 | |
heptasat2021 | 9:b8c9e956e3b5 | 7 | class HEPTA_SENSOR : public Hepta6axis, public HeptaTemp |
HeptaSatTraining2019 | 0:3248c516dd77 | 8 | { |
HeptaSatTraining2019 | 0:3248c516dd77 | 9 | public: |
HeptaSatTraining2019 | 0:3248c516dd77 | 10 | HEPTA_SENSOR( |
HeptaSatTraining2019 | 0:3248c516dd77 | 11 | /*PinName tx,PinName rx,PinName sw1,PinName sw2, |
HeptaSatTraining2019 | 0:3248c516dd77 | 12 | PinName sda,PinName scl,int aaddr,int agaddr, |
HeptaSatTraining2019 | 0:3248c516dd77 | 13 | PinName adcon*/ |
HeptaSatTraining2019 | 0:3248c516dd77 | 14 | PinName adcon, |
heptasat2021 | 9:b8c9e956e3b5 | 15 | PinName sda,PinName scl,int aaddr |
heptasat2021 | 9:b8c9e956e3b5 | 16 | //PinName tx,PinName rx,PinName sw1,PinName sw2 |
HeptaSatTraining2019 | 0:3248c516dd77 | 17 | ); |
HeptaSatTraining2019 | 0:3248c516dd77 | 18 | |
HeptaSatTraining2019 | 0:3248c516dd77 | 19 | private: |
HeptaSatTraining2019 | 0:3248c516dd77 | 20 | }; |
HeptaSatTraining2019 | 0:3248c516dd77 | 21 | |
HeptaSatTraining2019 | 0:3248c516dd77 | 22 | #endif |