Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
main.cpp
- Committer:
- javicensaez
- Date:
- 2021-12-21
- Revision:
- 1:5eb86cc15d60
- Parent:
- 0:dd79e9efee0d
File content as of revision 1:5eb86cc15d60:
#include "mbed.h" enum estados {estadoUno, estadoDos} estado; const float AVG_SLOPE = 4.3E-03; const float V30 = 1.43; float Vsense; DigitalOut led(LED1); DigitalIn boton(USER_BUTTON); AnalogIn adc_temp(ADC_TEMP); int main() { estado=estadoUno; Vsense=adc_temp.read()*3.3; while(1) { } }