A program to measure the temperature using the Max6675 board. The temperature is shown on 8x8 Max7219 matrix display and it is saved on SD as well.

Dependencies:   MAX7219 SDFileSystem mbed

Fork of MAXREFDES99_demo by Maxim Integrated

The program measures the temperature using the Max6675 board designed for Arduino. The temperature is shown on Max7219 8x8 matrix display (designed for Arduino as well) as text marque from right to left. The fonf size is 5x7 so the last row is used to show some info:

- All leds off: Normal temperature measuring - Leds shifting: Saving on SD card - Leds blinking: SD card missing or damaged

The Blue "user button" is used to save measured temperature on SD card. First click start saving, the second stop the process. Together the temperature is saved also the time. The time is reset when the process start. Connecting the USB to PC it's possible to see instant temperature and all saved data on SD.

Revision:
7:4b81ed6da6ab
Parent:
6:00aabe967e51
Child:
8:a6a0c9e280ae
diff -r 00aabe967e51 -r 4b81ed6da6ab main.cpp
--- a/main.cpp	Wed Apr 27 10:27:34 2016 +0000
+++ b/main.cpp	Thu Apr 28 08:46:24 2016 +0000
@@ -72,7 +72,7 @@
                 printf("\n 1: For 16x16 Aerial bold font");
                 printf("\n 2: For 16x16 Manual font");
                 user_font = get_user_input("\nPlease select font: ", 2);
-                if(user_font == 0)
+                if((user_font ==1)||(user_font ==2))
                     printf("\nNote:Position option works only for 5x7 font\n");
                 break;