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.
zadatak4s.cpp
00001 #include "mbed.h" 00002 #include <iostream> 00003 00004 AnalogIn ain (p16); 00005 AnalogOut aout (p18); 00006 00007 int main() { 00008 00009 float value = 0.0; 00010 int i = 0; 00011 00012 while(1){ 00013 value = ain*1.65; 00014 aout = value; 00015 i++; 00016 00017 if (i == 10000){ 00018 cout<<value*3.13<<endl; 00019 i=0; 00020 } 00021 } 00022 00023 }
Generated on Wed Jul 13 2022 10:59:55 by
1.7.2