Sensor Data - first assignment CO838

Dependencies:   mbed C12832 FXOS8700Q LM75B eCompass_FPU_Lib

Sensor Data - Project developed by Jean-Paul Saysana (jls44)

First assignment for the Internet of Things and Mobile Devices CO838 module

University of Kent (2016-2017)

Functionalities:

- Temperature Sensor

- Compass

- Music box

- Potentiometer that changes LED colours

Libraries used: C12832, eCompass_FPU_Lib, FXOS8700Q, LM75B

Committer:
co838_jls44
Date:
Fri Feb 24 14:33:41 2017 +0000
Revision:
1:c54902f21aa8
Parent:
0:4b83b332b327
comment about the playnote method

Who changed what in which revision?

UserRevisionLine numberNew contents of line
co838_jls44 0:4b83b332b327 1 /* Developed by Jean-Paul Saysana - jls44 - MSc Student in Computer Security */
co838_jls44 0:4b83b332b327 2 /* Internet of Things and Mobile Devices - CO838 University of Kent */
co838_jls44 0:4b83b332b327 3 /* First assignement - Sensor Data of the module */
co838_jls44 0:4b83b332b327 4 /* This software can: */
co838_jls44 0:4b83b332b327 5 /* - Display the current temperature in celsius, fahrenheit */
co838_jls44 0:4b83b332b327 6 /* - Display The compass angle to locate the user */
co838_jls44 0:4b83b332b327 7 /* - A speaker to play Music */
co838_jls44 0:4b83b332b327 8 /* - A potentiometer to change the LED color */
co838_jls44 0:4b83b332b327 9 /* - An useful menu to diplay or listen what ever you want */
co838_jls44 0:4b83b332b327 10 /* It also has some sound when moving the selector */
co838_jls44 0:4b83b332b327 11 /* You can quit the program by pressing the Back(SW3) button 3 times */
co838_jls44 0:4b83b332b327 12
co838_jls44 0:4b83b332b327 13 #include "mbed.h"
co838_jls44 0:4b83b332b327 14 #include "SensorData.h"
co838_jls44 0:4b83b332b327 15
co838_jls44 0:4b83b332b327 16 int main() {
co838_jls44 0:4b83b332b327 17 /* Instantiate the object Sensor Data*/
co838_jls44 0:4b83b332b327 18 SensorData sd;
co838_jls44 0:4b83b332b327 19
co838_jls44 0:4b83b332b327 20 /* Starting the sensor data. */
co838_jls44 0:4b83b332b327 21 sd.Start();
co838_jls44 0:4b83b332b327 22 return (0);
co838_jls44 0:4b83b332b327 23 }