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.
Diff: main.cpp
- Revision:
- 0:b49d36e03092
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Sat May 15 06:26:05 2010 +0000
@@ -0,0 +1,22 @@
+#include "mbed.h"
+#include "max6675.h"
+
+
+SPI spi(p11,p12,p13);
+
+max6675 max(spi,p18);
+Serial pc(USBTX,USBRX);
+
+int main() {
+
+
+ while (1) {
+
+ float temp = max.read_temp();
+ printf("\n\rT: %f",temp );
+
+ wait(.25);
+ }
+
+
+}
MAX6675 Thermocouple