Skip to content

Instantly share code, notes, and snippets.

@conoro
Created December 31, 2015 16:50
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save conoro/2875556b7477e443ae0a to your computer and use it in GitHub Desktop.
Oven Thermometer using Arduino with Teensy 3.1, K-Type Thermocouple, DS1307 Realtime Clock, Adafruit AD8495 and ILI9341 TFT
// Temperature from AD8495 K-type Thermocoule adapter and Datetime from DS1307 RTC. Displayed on ILI9341 LCD.
//
// MIT License (MIT)
// Copyright (c) 2015 Conor O'Neill
// Portions copyright Limor Fried/Ladyada for Adafruit Industries and others
// Portions copyright Paul Stoffregen
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <Wire.h>
#include "RTClib.h"
#include "SPI.h"
#include "Adafruit_GFX.h"
#include "ILI9341_t3.h"
#include "font_ComicSansMSBold.h"
#if defined(__SAM3X8E__)
#undef __FlashStringHelper::F(string_literal)
#define F(string_literal) string_literal
#endif
// These are the pins used for the UNO and Teensy
#define _sclk 13
#define _miso 12
#define _mosi 11
#define _cs 10
#define _dc 9
#define _rst 8
// Using software SPI is really not suggested, its incredibly slow
//Adafruit_ILI9340 tft = Adafruit_ILI9340(_cs, _dc, _mosi, _sclk, _rst, _miso);
// Use hardware SPI
ILI9341_t3 tft = ILI9341_t3(_cs, _dc, _rst);
RTC_DS1307 RTC;
String dateOut="";
String timeOut="";
String datePrev="";
String timePrev="";
float temperature=0;
float temperaturePrev=0;
void setup () {
Serial.begin(57600);
tft.begin();
tft.fillScreen(ILI9341_BLACK);
Wire.begin();
RTC.begin();
// following line sets the RTC to the date & time this sketch was compiled
// Uncomment this once per power down of the RTC and flash it. Then re-comment-out and reflash
//RTC.adjust(DateTime(__DATE__, __TIME__));
if (! RTC.isrunning()) {
Serial.println("RTC is NOT running!");
// following line sets the RTC to the date & time this sketch was compiled
//RTC.adjust(DateTime(__DATE__, __TIME__));
}
}
void loop () {
// Read temperature as analogue voltage from AD8495
analogReadResolution(13);
int raw = analogRead(A7);
float Vout = raw * (3.3 / 8191.0);
temperature = (Vout - 1.25)/0.005;
// Print Temperature to Serial console
Serial.println(temperature);
// Get current DateTime from DS1307 RTC
DateTime now = RTC.now();
// Print it to Serial Console
Serial.print(now.year(), DEC);
Serial.print('/');
Serial.print(now.month(), DEC);
Serial.print('/');
Serial.print(now.day(), DEC);
Serial.print(' ');
Serial.print(now.hour(), DEC);
Serial.print(':');
Serial.print(now.minute(), DEC);
Serial.print(':');
Serial.print(now.second(), DEC);
// Generate nicely formatted datetime string for ILI9341
dateOut="";
timeOut="";
if (now.hour() < 10){
timeOut += "0";
}
timeOut += now.hour();
timeOut += ':';
if (now.minute() < 10){
timeOut += "0";
}
timeOut += now.minute();
timeOut += ':';
if (now.second() < 10){
timeOut += "0";
}
timeOut += now.second();
Serial.println();
if (now.day() < 10){
dateOut += "0";
}
dateOut += now.day();
dateOut += '/';
if (now.month() < 10){
dateOut += "0";
}
dateOut += now.month();
dateOut += '/';
dateOut += now.year();
// Print Temperature and Datetime to ILI9341 LCD
unsigned long start = micros();
tft.setCursor(0, 0);
tft.setTextColor(ILI9341_MAGENTA);
tft.setFont(ComicSansMS_24_Bold);
tft.println("Temperature:");
// Wipe out previous text and write new text
tft.setCursor(0, 45);
tft.setTextColor(ILI9341_BLACK);
tft.println(temperaturePrev);
tft.setTextColor(ILI9341_MAGENTA);
tft.println(temperature);
temperaturePrev = temperature;
// Wipe out previous text and write new text
tft.setCursor(0, 100);
tft.setTextColor(ILI9341_BLACK);
tft.println(datePrev);
tft.setTextColor(ILI9341_MAGENTA);
tft.println(dateOut);
datePrev = dateOut;
// Wipe out previous text and write new text
tft.setCursor(0, 145);
tft.setTextColor(ILI9341_BLACK);
tft.println(timePrev);
tft.setTextColor(ILI9341_MAGENTA);
tft.println(timeOut);
timePrev = timeOut;
delay(1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment