hardware:mould
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
hardware:mould [2019/09/13 10:04] – [Bare metal controlling the Heaters] himuser | hardware:mould [2022/01/14 18:44] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 43: | Line 43: | ||
* {{ : | * {{ : | ||
* {{ : | * {{ : | ||
+ | * {{ : | ||
* {{: | * {{: | ||
Line 101: | 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. | + | ===== New slowcontrol with Node Red ===== |
- | Run inside a screen session: | + | ==== Installation ==== |
- | / | + | Install docker on the pi via: <code bash> |
+ | wget -O install_docker.sh get.docker.com | ||
+ | sudo sh install_docker.sh | ||
+ | sudo usermod -aG docker | ||
+ | </code> | ||
+ | and logout and login again. | ||
- | Code can be found here: https:// | + | Next, create an volume to permanently store data and run <code bash> |
- | ==== Bare metal controlling of the heaters ==== | + | docker volume create --name node_red_user_data |
+ | docker run -d -p 1880:1880 --restart unless-stopped -v node_red_user_data:/data | ||
+ | </ | ||
- | HINT: Better use the web interface to get the status and set the heaters power: http:// | + | Open the webpage: http:// |
- | + | and install via the menu further packages like '' | |
- | Control the heaters be writing them a value in the range '' | + | |
- | mosquitto_pub | + | |
- | Example: | + | Source code: |
- | | + | |
- | | + | |
- | 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 ' | + | |
- | echo " | + | |
- | </ | + | |
- | Switch off all 4 heaters: | + | ==== external set point to the oven ==== |
+ | |||
+ | * with this device: | ||
+ | * USB Analog Output Module / USB DAC 0-10V 4-20mA – 4 Channels | ||
+ | * from Lucid Control: https:// | ||
+ | * 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> | <code bash> | ||
- | | + | -m ALL |
- | | + | </code> |
- | | + | to all your commands. BUT note: the mib file seems to be a bit buggy. To get the ISO numbers, eg add '' |
- | | + | |
- | echo " | + | Perform a complete walk of all parameters |
- | </ | + | |
+ | |||
+ | Get the status of the first outlet | ||
+ | | ||
+ | and 2nd outlet | ||
+ | | ||
+ | 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.1568369077.txt.gz · Last modified: 2022/01/14 18:44 (external edit)