mirror of
https://github.com/brendanhaines/kilncontroller.git
synced 2024-11-09 21:14:46 -07:00
adds basic webserver and fixes multiple temperature inputs
This commit is contained in:
parent
80028c4eeb
commit
8e2da45ade
|
@ -3,14 +3,63 @@
|
||||||
#include <max6675.h>
|
#include <max6675.h>
|
||||||
#include "Adafruit_MCP23017.h"
|
#include "Adafruit_MCP23017.h"
|
||||||
|
|
||||||
int MISO0 = 12;
|
#include <ESP8266WiFi.h>
|
||||||
int CLK0 = 13;
|
#include <WiFiClient.h>
|
||||||
int CS0 = 16;
|
#include <ESP8266WebServer.h>
|
||||||
|
|
||||||
|
///// USER SETTINGS /////
|
||||||
|
|
||||||
|
// WiFi Settings
|
||||||
|
const char *ssid = "ESPap";
|
||||||
|
const char *password = "thereisnospoon";
|
||||||
|
|
||||||
|
// Temperature Offsets
|
||||||
|
int t1off = 0;
|
||||||
|
int t2off = 0;
|
||||||
|
int t3off = 0;
|
||||||
|
|
||||||
|
// Pinout
|
||||||
|
int CLK0 = 13;
|
||||||
|
int MISO0 = 12;
|
||||||
|
int CS1 = 16;
|
||||||
|
int CS2 = 14;
|
||||||
|
int CS3 = 15;
|
||||||
|
|
||||||
|
///// END USER SETTINGS /////
|
||||||
|
|
||||||
|
// Thermocouple stuff
|
||||||
|
MAX6675 t1(CLK0, CS1, MISO0);
|
||||||
|
MAX6675 t2(CLK0, CS2, MISO0);
|
||||||
|
MAX6675 t3(CLK0, CS3, MISO0);
|
||||||
|
int temp1, temp2, temp3;
|
||||||
|
|
||||||
|
// Output Stuff
|
||||||
LiquidCrystal_I2C lcd(0x3f, 20, 4);
|
LiquidCrystal_I2C lcd(0x3f, 20, 4);
|
||||||
MAX6675 t0(CLK0, CS0, MISO0);
|
|
||||||
Adafruit_MCP23017 mcp;
|
Adafruit_MCP23017 mcp;
|
||||||
|
|
||||||
|
// WiFi Stuff
|
||||||
|
ESP8266WebServer server(80);
|
||||||
|
|
||||||
|
// Control Stuff
|
||||||
|
int onTemp = 70;
|
||||||
|
int offTemp = 80;
|
||||||
|
|
||||||
|
///// WEB SERVER /////
|
||||||
|
void handleRoot() {
|
||||||
|
server.send(200, "text/html", ""
|
||||||
|
"<h1>Kiln Controller V1</h1>"
|
||||||
|
"<a href=\"/page2\">Page 2</a>"
|
||||||
|
"");
|
||||||
|
}
|
||||||
|
|
||||||
|
void handlePage2() {
|
||||||
|
server.send(200, "text/html", ""
|
||||||
|
"<h1>Page 2</h1>"
|
||||||
|
"<a href=\"/\">Home</a>"
|
||||||
|
"");
|
||||||
|
}
|
||||||
|
|
||||||
|
///// SETUP /////
|
||||||
void setup() {
|
void setup() {
|
||||||
// Onboard LED
|
// Onboard LED
|
||||||
pinMode(2, OUTPUT);
|
pinMode(2, OUTPUT);
|
||||||
|
@ -42,21 +91,55 @@ void setup() {
|
||||||
mcp.digitalWrite(2, LOW);
|
mcp.digitalWrite(2, LOW);
|
||||||
mcp.digitalWrite(3, LOW);
|
mcp.digitalWrite(3, LOW);
|
||||||
|
|
||||||
|
// Temperature Inital Values
|
||||||
|
temp1 = t1.readFahrenheit();
|
||||||
|
temp2 = t2.readFahrenheit();
|
||||||
|
temp3 = t3.readFahrenheit();
|
||||||
|
|
||||||
|
// Access Point Setup
|
||||||
|
WiFi.softAP(ssid, password);
|
||||||
|
IPAddress myIP = WiFi.softAPIP();
|
||||||
|
server.on("/", handleRoot);
|
||||||
|
server.on("/page2", handlePage2);
|
||||||
|
server.begin();
|
||||||
|
lcd.clear();
|
||||||
|
lcd.setCursor(0, 0); lcd.print("SSID: "); lcd.print(ssid);
|
||||||
|
lcd.setCursor(0, 1); lcd.print("PSWD: "); lcd.print(password);
|
||||||
|
lcd.setCursor(0, 2); lcd.print("IP : "); lcd.print(myIP);
|
||||||
|
|
||||||
|
delay(1000);
|
||||||
|
|
||||||
// Clear LCD
|
// Clear LCD
|
||||||
lcd.setCursor(0, 0);
|
lcd.setCursor(0, 0);
|
||||||
lcd.clear();
|
lcd.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
void loop() {
|
void loop() {
|
||||||
// Get value
|
server.handleClient();
|
||||||
lcd.setCursor(0, 0);
|
|
||||||
lcd.print(t0.readFahrenheit());
|
|
||||||
lcd.print("F ");
|
|
||||||
lcd.print(t0.readCelsius());
|
|
||||||
lcd.print("C");
|
|
||||||
|
|
||||||
|
// Get values
|
||||||
|
temp1 = t1.readFahrenheit() + t1off;
|
||||||
|
temp2 = t2.readFahrenheit() + t2off;
|
||||||
|
temp3 = t3.readFahrenheit() + t3off;
|
||||||
|
|
||||||
|
// Write to LCD
|
||||||
|
lcd.clear();
|
||||||
|
lcd.setCursor(0, 0);
|
||||||
|
lcd.print("1: ");
|
||||||
|
lcd.print(temp1);
|
||||||
|
lcd.print(" F");
|
||||||
|
lcd.setCursor(0, 1);
|
||||||
|
lcd.print("2: ");
|
||||||
|
lcd.print(temp2);
|
||||||
|
lcd.print(" F");
|
||||||
|
lcd.setCursor(0, 2);
|
||||||
|
lcd.print("3: ");
|
||||||
|
lcd.print(temp3);
|
||||||
|
lcd.print(" F");
|
||||||
|
|
||||||
|
// Heartbeat LED
|
||||||
digitalWrite(2, LOW);
|
digitalWrite(2, LOW);
|
||||||
delay(100);
|
delay(100);
|
||||||
digitalWrite(2, HIGH);
|
digitalWrite(2, HIGH);
|
||||||
delay(1000);
|
delay(900);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user