ejercicio de programacion

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
icmembed
Date:
Mon Jul 09 14:40:17 2018 +0000
Parent:
3:fbd5857ea534
Commit message:
para los alumnos de microcontroladores de la UPP

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Wed Jun 07 13:35:42 2017 +0000
+++ b/main.cpp	Mon Jul 09 14:40:17 2018 +0000
@@ -2,17 +2,17 @@
  
 AnalogIn analog_value(A0);
  
-DigitalOut led(LED1);
+DigitalOut led(PA_6);
 
 int main() {
     float meas;
     
-    printf("\nAnalogIn example\n");
+    printf("\nAnalogIn example\r\n");
     
     while(1) {
         meas = analog_value.read(); // Converts and read the analog input value (value from 0.0 to 1.0)
         meas = meas * 3300; // Change the value to be in the 0 to 3300 range
-        printf("measure = %.0f mV\n", meas);
+        printf("measure = %.0f mV  \r\n", meas);
         if (meas > 2000) { // If the value is greater than 2V then switch the LED on
           led = 1;
         }