From 988dada3427480cd539f356a969437fe45ea2a6d Mon Sep 17 00:00:00 2001 From: Vitor de Miranda Henrique Date: Thu, 1 Mar 2018 08:46:41 -0600 Subject: [PATCH 1/3] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6812f90..2fc96f1 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,9 @@ Here is a list of possibilities: * Add temperature sensors on your enclosure or near your printer -* Heater on your enclosure and keep the temperature nice and high for large ABS +* Add Active heaters on your enclosure and keep the temperature nice and high for large ABS * Active cooling for good PLA printing +* Schedule GPIO's to turn on and off with a fixed period of time during printing. * Mechanical buttons to pause and resume printer jobs * Mechanical buttons to send GCODE to the printer * Mechanical buttons to control raspberry pi GPIO From 2bf06f2f009890a8914dac3a5e0a48321837cd16 Mon Sep 17 00:00:00 2001 From: Vitor de Miranda Henrique Date: Thu, 1 Mar 2018 08:48:21 -0600 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2fc96f1..6a5128d 100644 --- a/README.md +++ b/README.md @@ -164,7 +164,7 @@ You can also add mechanical buttons to pause, resume and change filaments near o If you want to enable notifications check the following issue: https://github.com/vitormhenrique/OctoPrint-Enclosure/issues/36 -You can enable GCODE commands to control configured OUTPUTS. +You can enable GCODE commands to control configured **outputs**. The list of supported gcodes: From a089d3e97eb4be80e3d1fc581ca05b23a9a1d0e7 Mon Sep 17 00:00:00 2001 From: Vitor de Miranda Henrique Date: Thu, 1 Mar 2018 08:50:16 -0600 Subject: [PATCH 3/3] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6a5128d..82ae990 100644 --- a/README.md +++ b/README.md @@ -168,19 +168,19 @@ You can enable GCODE commands to control configured **outputs**. The list of supported gcodes: -Regular outputs +* Regular outputs
ENC O[id] S[value]
Id is generated on the setting plugin, value can be 0 to turn OFF the output or 1 to turn ON output. Ex: sending ENC O2 S1 would turn ON output 2. -PWM outputs +* PWM outputs
ENC O[id] S[pwm value]
Id is generated on the setting plugin, value is the duty cycle from 0 to 100. Ex: sending ENC O5 S75 would turn set duty cycle of 75% on output 5. -Neopixel +* Neopixel
ENC O[id] R[red value] G[green value] B[blue value]
Id is generated on the setting plugin, value should be between 0 to 255. R, G, and B are the colors for that value. Ex: sending ENC O1 R255 G0 B0 would set neopixel with id 1 color to full red. -Temperature / Humidity Control +* Temperature / Humidity Control
ENC O[id] W[wait value] S[set value]
Id is generated on the setting plugin, W specify if the plugin should wait or not for the enclosure to reach the temperature (1 is to wait), S will set the set temperature. Ex: ENC O1 W1 S45 will set temperature control with id 1 to 45 and wait until the temperature is reached to continue printing.