hardware:mould
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
hardware:mould [2020/06/22 08:56] – [Installation] himuser | hardware:mould [2022/01/14 18:44] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 102: | Line 102: | ||
* Full Access via SSH: | * Full Access via SSH: | ||
* '' | * '' | ||
- | ==== Controlling loop ==== | ||
- | |||
- | There is temperature ramp prepared which controls the heating power of all four heaters between 0 and 100% depending on the Temperatur read on C1. | ||
- | |||
- | Run inside a screen session: | ||
- | / | ||
- | |||
- | Code can be found here: https:// | ||
- | ==== Bare metal controlling of the heaters ==== | ||
- | |||
- | HINT: Better use the web interface to get the status and set the heaters power: http:// | ||
- | | ||
- | Control the heaters be writing them a value in the range '' | ||
- | mosquitto_pub -h mould-control -t ' | ||
- | |||
- | Example: | ||
- | mosquitto_pub -h mould-control -t ' | ||
- | | ||
- | Get the status | ||
- | mosquitto_sub -h mould-control -t ' | ||
- | | ||
- | Switch on all 4 heaters: | ||
- | <code bash> | ||
- | mosquitto_pub -h mould-control -t ' | ||
- | mosquitto_pub -h mould-control -t ' | ||
- | mosquitto_pub -h mould-control -t ' | ||
- | mosquitto_pub -h mould-control -t ' | ||
- | echo " | ||
- | </ | ||
- | |||
- | Switch off all 4 heaters: | ||
- | <code bash> | ||
- | mosquitto_pub -h mould-control -t ' | ||
- | mosquitto_pub -h mould-control -t ' | ||
- | mosquitto_pub -h mould-control -t ' | ||
- | mosquitto_pub -h mould-control -t ' | ||
- | echo " | ||
- | </ | ||
===== New slowcontrol with Node Red ===== | ===== New slowcontrol with Node Red ===== | ||
Line 160: | Line 122: | ||
Source code: | Source code: | ||
+ | * 21.7.2020: | ||
+ | * 13.7.2020: {{ : | ||
* 17.6.2020: {{ : | * 17.6.2020: {{ : | ||
* {{ : | * {{ : | ||
+ | * {{ : | ||
==== external set point to the oven ==== | ==== external set point to the oven ==== | ||
Line 169: | Line 134: | ||
* from Lucid Control: https:// | * from Lucid Control: https:// | ||
* Manual: {{ : | * Manual: {{ : | ||
+ | * The oven is plugged into this multi plug: | ||
+ | * [[https:// | ||
+ | |||
+ | ==== SNMP Hints ==== | ||
+ | |||
+ | To set and get info from the Brennstuhl multiplug (IP address 10.106.11.21) run the following commands: | ||
+ | |||
+ | Copy the MIB file into ~/ | ||
+ | The use the MIB file, add | ||
+ | <code bash> | ||
+ | -m ALL | ||
+ | </ | ||
+ | to all your commands. BUT note: the mib file seems to be a bit buggy. To get the ISO numbers, eg add '' | ||
+ | |||
+ | Perform a complete walk of all parameters | ||
+ | snmpwalk -c public -v 2c 10.106.11.21 1.3.6.1.4.1.40595.1 | ||
+ | Get the status of the first outlet | ||
+ | snmpget -c public -v 2c 10.106.11.21 iso.3.6.1.4.1.40595.1.1.1.0 | ||
+ | and 2nd outlet | ||
+ | snmpget -c public -v 2c 10.106.11.21 iso.3.6.1.4.1.40595.1.1.2.0 | ||
+ | Set the 2nd outlet on | ||
+ | snmpset -c private -v 2c 10.106.11.21 iso.3.6.1.4.1.40595.1.1.2.0 u 1 | ||
+ | and off | ||
+ | snmpset -c private -v 2c 10.106.11.21 iso.3.6.1.4.1.40595.1.1.2.0 u 0 |
hardware/mould.1592816194.txt.gz · Last modified: 2022/01/14 18:44 (external edit)