q2
Revision 0:13cbb0d706ff, committed 2019-10-22
- Comitter:
- brunostgr
- Date:
- Tue Oct 22 13:42:21 2019 +0000
- Commit message:
- q2
Changed in this revision
| Question2.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/Question2.cpp Tue Oct 22 13:42:21 2019 +0000
@@ -0,0 +1,21 @@
+#include "mbed.h"
+
+AnalogIn analog_value(PA_0); // Entree analogique
+Serial PC(USBTX, USBRX); // Port USB
+
+// Programme principal
+int main()
+{
+ // Declaration des variables
+ float mesure;
+ float temp;
+
+ while(1) {
+
+ mesure = analog_value.read(); // Assigne une valeur de 0.0 à 1.0 a mesure
+ temp = mesure * 330; // Conversion en degres Celsius
+
+ // Affichage de la temperature
+ PC.printf("Temperature = %u C",(unsigned)temp);
+ }
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Tue Oct 22 13:42:21 2019 +0000 @@ -0,0 +1,1 @@ +https://os.mbed.com/users/mbed_official/code/mbed/builds/65be27845400 \ No newline at end of file