kopia lustrzana https://github.com/botheredbybees/kilnController
Updated README/defaults - Please UPDATE YOUR CONFIG according to example
rodzic
ac1ec77a18
commit
21cf3b6a3e
|
@ -15,7 +15,11 @@ Don't forget to share and drop a link, when you do :)
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
Based on MAX 31855 Cold-Junction K-Type Thermocouple and Raspberry Pi GPIO driven Solid State Relays.
|
## Hardware
|
||||||
|
|
||||||
|
* Raspberry Pi (Rev 2B)
|
||||||
|
* MAX 31855/6675 Cold-Junction K-Type Thermocouple
|
||||||
|
* GPIO driven Solid-State-Relays/MOSFETs
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ log_format = '%(asctime)s %(levelname)s %(name)s: %(message)s'
|
||||||
|
|
||||||
### Server
|
### Server
|
||||||
listening_ip = "0.0.0.0"
|
listening_ip = "0.0.0.0"
|
||||||
listening_port = 8080
|
listening_port = 8081
|
||||||
|
|
||||||
########################################################################
|
########################################################################
|
||||||
#
|
#
|
||||||
|
@ -29,10 +29,11 @@ gpio_air = 9 # Switches 0-phase det. solid-state-relay
|
||||||
### Inputs
|
### Inputs
|
||||||
gpio_door = 18
|
gpio_door = 18
|
||||||
|
|
||||||
max31855 = 0
|
### Thermocouple Adapter selection (MAX31855 or MAX6675)
|
||||||
max6675 = 1
|
max31855 = 1
|
||||||
|
max6675 = 0
|
||||||
|
|
||||||
### MAX31855 K-Type Thermocouple I2C
|
### Thermocouple I2C Connection
|
||||||
gpio_sensor_cs = 27
|
gpio_sensor_cs = 27
|
||||||
gpio_sensor_clock = 22
|
gpio_sensor_clock = 22
|
||||||
gpio_sensor_data = 17
|
gpio_sensor_data = 17
|
||||||
|
|
|
@ -7,7 +7,7 @@ var selected_profile = 0;
|
||||||
var time_mode = 0;
|
var time_mode = 0;
|
||||||
var selected_profile_name = "leadfree";
|
var selected_profile_name = "leadfree";
|
||||||
|
|
||||||
var host = "ws://" + window.location.hostname + ":8080";
|
var host = "ws://" + window.location.hostname + ":" + window.location.port;
|
||||||
var ws_status = new WebSocket(host+"/status");
|
var ws_status = new WebSocket(host+"/status");
|
||||||
var ws_control = new WebSocket(host+"/control");
|
var ws_control = new WebSocket(host+"/control");
|
||||||
var ws_storage = new WebSocket(host+"/storage");
|
var ws_storage = new WebSocket(host+"/storage");
|
||||||
|
|
Ładowanie…
Reference in New Issue