MAKOTO MOTOYAMA / Mbed 2 deprecated audiosensor

Dependencies:   HEPTA_CDH HEPTA_EPS HEPTA_SENSOR mbed

Files at this revision

API Documentation at this revision

Comitter:
HeptaSatTraining2019
Date:
Wed Aug 21 11:07:11 2019 +0000
Parent:
20:671d075126c1
Child:
22:719fa9b0612c
Commit message:

Changed in this revision

HEPTA_CDH.lib Show annotated file Show diff for this revision Revisions of this file
HEPTA_COM.lib Show annotated file Show diff for this revision Revisions of this file
HEPTA_EPS.lib Show annotated file Show diff for this revision Revisions of this file
HEPTA_SENSOR.lib Show annotated file Show diff for this revision Revisions of this file
Hepta9axis.lib Show diff for this revision Revisions of this file
HeptaBattery.lib Show diff for this revision Revisions of this file
HeptaCamera_GPS.lib Show diff for this revision Revisions of this file
HeptaTemp.lib Show diff for this revision Revisions of this file
HeptaXbee.lib Show diff for this revision Revisions of this file
SDFileSystem.lib Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/HEPTA_CDH.lib	Wed Aug 21 11:07:11 2019 +0000
@@ -0,0 +1,1 @@
+https://os.mbed.com/users/HeptaSatTraining2019/code/HEPTA_CDH/#58ce2bfde7a8
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/HEPTA_COM.lib	Wed Aug 21 11:07:11 2019 +0000
@@ -0,0 +1,1 @@
+https://os.mbed.com/users/HeptaSatTraining2019/code/HEPTA_COM/#cea23634807d
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/HEPTA_EPS.lib	Wed Aug 21 11:07:11 2019 +0000
@@ -0,0 +1,1 @@
+https://os.mbed.com/users/HeptaSatTraining2019/code/HEPTA_EPS/#db9d263cbca7
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/HEPTA_SENSOR.lib	Wed Aug 21 11:07:11 2019 +0000
@@ -0,0 +1,1 @@
+https://os.mbed.com/users/HeptaSatTraining2019/code/HEPTA_SENSOR/#3248c516dd77
--- a/Hepta9axis.lib	Mon Aug 19 05:08:19 2019 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-https://developer.mbed.org/users/HEPTA/code/Hepta9axis/#098423fb0371
--- a/HeptaBattery.lib	Mon Aug 19 05:08:19 2019 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-https://developer.mbed.org/users/HEPTA/code/HeptaBattery/#7d0aaedfe1c0
--- a/HeptaCamera_GPS.lib	Mon Aug 19 05:08:19 2019 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-https://os.mbed.com/users/HEPTA/code/HeptaCamera_GPS/#cf9f49a1b50d
--- a/HeptaTemp.lib	Mon Aug 19 05:08:19 2019 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-https://developer.mbed.org/users/HEPTA/code/HeptaTemp/#9a367d5cf53d
--- a/HeptaXbee.lib	Mon Aug 19 05:08:19 2019 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-https://developer.mbed.org/users/HEPTA/code/HeptaXbee/#9c8433d32d11
--- a/SDFileSystem.lib	Mon Aug 19 05:08:19 2019 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-http://mbed.org/users/mbed_official/code/SDFileSystem/#8db0d3b02cec
--- a/main.cpp	Mon Aug 19 05:08:19 2019 +0000
+++ b/main.cpp	Wed Aug 21 11:07:11 2019 +0000
@@ -1,18 +1,19 @@
 #include "mbed.h"
-#include "SDFileSystem.h"
-#include "HeptaXbee.h"
-#include "HeptaCamera_GPS.h"
-#include "Hepta9axis.h"
-#include "HeptaTemp.h"
-#include "HeptaBattery.h"
+#include"HEPTA_EPS.h"
+#include"HEPTA_CDH.h"
+#include"HEPTA_SENSOR.h"
+#include"HEPTA_COM.h"
 
 Serial pc(USBTX,USBRX);
-SDFileSystem sd(p5, p6, p7, p8, "sd");
-HeptaXbee xbee(p9,p10);
-HeptaCamera_GPS cam_gps(p13, p14,p25,p24);
-Hepta9axis n_axis(p28,p27,0xD0,0x18);
-HeptaTemp temp(p17);
-HeptaBattery battery(p16,p26);
+HEPTA_EPS eps(p16,p26);
+HEPTA_CDH cdh(p5, p6, p7, p8, "sd");
+/*HEPTA_SENSOR sensor(p13, p14,p25,p24, 
+                    p28,p27,0xD0,0x18,
+                    p17);*/
+HEPTA_SENSOR sensor(p17, 
+                    p28,p27,0xD0,0x18,
+                    p13, p14,p25,p24);
+HEPTA_COM com(p9,p10);
 
 DigitalOut myled(LED1);