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.
Dependencies: mbed
main.cpp
- Committer:
- rafaelff3
- Date:
- 2021-02-22
- Revision:
- 1:adcde9f41a67
- Parent:
- 0:9b9b318a5f0d
File content as of revision 1:adcde9f41a67:
#include "mbed.h" AnalogIn freio (A0); float sinal = 0; float pressao = 0; int main() { while(1){ sinal = freio.read(); // Leitura vai de 0.2 (0 bar) a 1 (10 bar) pressao = (sinal - 0.2)/0.8*10 } }