Skip to content
Snippets Groups Projects
Commit 875cf6ab authored by wactbprot's avatar wactbprot
Browse files

rdm

parent 8d0aeab5
No related branches found
No related tags found
No related merge requests found
...@@ -42,8 +42,52 @@ T in C | ...@@ -42,8 +42,52 @@ T in C |
t in h t in h
``` ```
## state indicators (D0 ... D4)
```
D0 D1 D2 D3 D4
waiting 1 0 0 0 0
ramp_up 0 1 0 0 0
bakeout 0 0 1 0 0
ramp_down 0 0 0 1 0
hold_end 0 0 0 0 1
```
## temperature indicators (D5, D6, D7)
* maximum temperature difference: MTD
* target temperature: TT
* current temperature: CT
* upper limit (TT+MTD): UL
* lower limit (TT-MTD): LL
```
D5 D6 D7
CT <= UL & CT > TT 0 0 1
CT >= LL & CT < TT 0 1 0
CT < LL 1 1 0
CT > UL 1 0 1
```
## TCP cmd ## TCP cmd
### overview
* state
* runtime
* t1
* t2
* t3
* remaining
* heatpower
* current_temp
* target_temp
* run
* init
* off
* holdhours (get/ set with =val)
* voltage (get/ set with =val)
### get current heat power ### get current heat power
``` ```
...@@ -98,10 +142,10 @@ curl -d '{"Action":"TCP","Host":"192.168.98.134","Port":"9009", "Value":"init\n ...@@ -98,10 +142,10 @@ curl -d '{"Action":"TCP","Host":"192.168.98.134","Port":"9009", "Value":"init\n
curl -d '{"Action":"TCP","Host":"192.168.98.134","Port":"9009", "Value":"run\n"}' -X PUT http://localhost:55555 curl -d '{"Action":"TCP","Host":"192.168.98.134","Port":"9009", "Value":"run\n"}' -X PUT http://localhost:55555
``` ```
### off ### off
* open R0 and R1 * open R0 and R1
* set statr time to 0.0 * set statr time to 0.0
``` ```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment