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
00001 #include "mbed.h" 00002 #include "TextLCD.h" 00003 00004 TextLCD lcd(p24, p26, p27, p28, p29, p30); // rs, e, d4-d7 00005 AnalogIn ain(p15); 00006 00007 int main() { 00008 float adc; 00009 00010 while (1){ 00011 adc=ain.read(); 00012 lcd.locate(0,0); 00013 adc=adc*3.3*100; 00014 lcd.printf("%8.1f \n", adc); 00015 wait(0.05); // 20Hz update rate 00016 } 00017 }
Generated on Fri Aug 26 2022 00:58:05 by
1.7.2