Skip to content
Snippets Groups Projects
Commit 15d62c56 authored by Pascal Engeler's avatar Pascal Engeler
Browse files

Small changes

parent 5c86ecc4
No related branches found
No related tags found
No related merge requests found
%% Cell type:code id:a9d77d5f tags:
``` python
import pidcontroller
import pqwsw2
import rl20001
import serial
```
%% Cell type:code id:19a0cd26 tags:
``` python
mySwitch = pqwsw2.PQWSW2('192.168.254.1')
```
%% Output
Smart Switch Connected Successfully
%% Cell type:code id:6429c02c tags:
``` python
mySwitch.getState()
```
%% Output
False
%% Cell type:code id:47a4b917 tags:
``` python
mySwitch.getPower()
```
%% Output
135.9
0
%% Cell type:code id:99c554eb tags:
%% Cell type:code id:34739f12 tags:
``` python
mySwitch.turnOn()
```
%% Cell type:code id:4073a63f tags:
``` python
mySwitch.turnOff()
```
%% Cell type:code id:2611e40e tags:
``` python
relay = rl20001.RL20001('COM6')
```
%% Output
Numato USB Relay Connected Successfully
%% Cell type:code id:f191cd93 tags:
``` python
relay.getState()
```
%% Output
RL20001: Communication Error Detected
%% Cell type:code id:8a441d0a tags:
``` python
```
%% Cell type:code id:41805be6 tags:
``` python
```
%% Cell type:code id:dbdb50c6 tags:
``` python
```
%% Cell type:code id:22f02a53 tags:
``` python
```
%% Cell type:code id:8fe65477 tags:
``` python
```
%% Cell type:code id:b9973c09 tags:
``` python
```
%% Cell type:code id:f304c6e7 tags:
``` python
```
%% Cell type:code id:10c9ce89 tags:
``` python
controller = pidcontroller.PidController('COM5')
```
%% Output
PID Controller Connected Successfully
%% Cell type:code id:686bf2c5 tags:
%% Cell type:code id:8566485c tags:
``` python
controller.getTemperatures()
```
%% Output
[31.007989, 30.825624, 30.906236, 30.27842, 30.121736]
%% Cell type:code id:93835e25 tags:
``` python
controller._sendCommand('P2.254;')
controller._sendCommand('I0.0014;')
controller._sendCommand('D100.348;')
controller._sendCommand('N340.75;')
controller._sendCommand('E0.5;')
controller._sendCommand('S31.0;')
```
%% Output
';'
%% Cell type:code id:5fcb4a0f tags:
``` python
controller._sendCommand('p')
```
%% Output
'2.254000,0.001400,100.348000;'
%% Cell type:code id:915d1fe7 tags:
``` python
controller._sendCommand('v')
```
%% Output
'0.262481,342.299172,0.001700;'
%% Cell type:code id:163897bf tags:
``` python
controller._sendCommand('t')
```
%% Output
'30.732702,30.754168,30.753851,30.138579,29.942677;'
%% Cell type:code id:2704803d tags:
``` python
controller._sendCommand('?')
```
%% Output
';'
%% Cell type:code id:5fd95fee tags:
%% Cell type:code id:75ab65fb tags:
``` python
controller._sendCommand('o')
```
%% Output
'0.900000;'
%% Cell type:code id:2fa51f26 tags:
``` python
controller.disconnect()
```
%% Cell type:code id:f23cc2e3 tags:
``` python
controller.ser.close()
```
%% Cell type:code id:227a9eed tags:
``` python
```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment