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 "max6675.h" 00003 00004 SPI spi(PA_7, PA_6, PA_5); // MOSI, MISO, SCLK 00005 max6675 max(spi,PA_8); 00006 00007 int main() { 00008 float temp; 00009 while (1) { 00010 00011 temp = max.read_temp(); 00012 printf("\n\r Температура: %f",temp ); 00013 00014 wait(.25); 00015 } 00016 }
Generated on Fri Jul 22 2022 07:28:35 by
1.7.2