Permet de lire et stocker dans une variable publique (en int ou en string) la direction pointee par la girouette WS1080.

Dependencies:   mbed GirouetteWD1080

Files at this revision

API Documentation at this revision

Comitter:
Station_Meteo_Laos
Date:
Sat Jun 29 16:17:45 2019 +0000
Commit message:
Permet de lire et stocker dans une variable publique (en int ou en string) la direction pointee par la girouette WS1080.

Changed in this revision

GirouetteWD1080.lib Show annotated file Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/GirouetteWD1080.lib	Sat Jun 29 16:17:45 2019 +0000
@@ -0,0 +1,1 @@
+https://os.mbed.com/users/Station_Meteo_Laos/code/GirouetteWD1080/#dfa695d9c256
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Sat Jun 29 16:17:45 2019 +0000
@@ -0,0 +1,20 @@
+#include "mbed.h"
+#include "GirouetteWD1080.h"
+
+DigitalOut myled(LED1);
+Serial pc(USBTX, USBRX,9600); // tx, rx
+GirouetteWD1080 girouette(A1);
+
+int main() {
+    string p;
+    while(1) {
+        pc.printf("\n");
+        //Lecture et affichage avec retour d'un string
+        if(girouette.read_string()==true)pc.printf("Direction du vent : %s\n",girouette.direction_string);
+        if(girouette.read_string()==false)pc.printf("Erreur de lecture : %s !\n",girouette.direction_string);
+        //Lecture et affichage avec retour d'un int
+        if(girouette.read_int()==true)pc.printf("Direction du vent : %u\n",girouette.direction_int);
+        if(girouette.read_int()==false)pc.printf("Erreur de lecture : %u !\n",girouette.direction_int);
+        pc.printf("\n");
+    }
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Sat Jun 29 16:17:45 2019 +0000
@@ -0,0 +1,1 @@
+https://os.mbed.com/users/mbed_official/code/mbed/builds/65be27845400
\ No newline at end of file