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

Testing new driver

parent 64e1de24
No related branches found
No related tags found
No related merge requests found
%% Cell type:code id:7e06b69d tags:
%% Cell type:code id:a9d77d5f tags:
``` python
import pidcontroller
import pqwsw2
import rl20001
import serial
```
%% Cell type:code id:dc086560 tags:
%% 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
%% Cell type:code id:99c554eb 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:134b77e1 tags:
%% Cell type:code id:686bf2c5 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('N370.75;')
controller._sendCommand('N340.75;')
controller._sendCommand('E0.5;')
controller._sendCommand('S31.0;')
```
%% Output
';'
%% Cell type:code id:f35f5556 tags:
%% Cell type:code id:5fcb4a0f tags:
``` python
controller._sendCommand('p')
```
%% Output
'2.254000,0.001400,100.348000;'
%% Cell type:code id:bcf2eedd tags:
%% Cell type:code id:915d1fe7 tags:
``` python
controller._sendCommand('v')
```
%% Output
'-0.027327,381.741730,-0.000098;'
'0.262481,342.299172,0.001700;'
%% Cell type:code id:ec963ad6 tags:
%% Cell type:code id:163897bf tags:
``` python
controller._sendCommand('t')
```
%% Output
'31.027632,30.811564,30.906875,30.280394,30.118540;'
'30.732702,30.754168,30.753851,30.138579,29.942677;'
%% Cell type:code id:5965db64 tags:
%% Cell type:code id:2704803d tags:
``` python
controller._sendCommand('o')
controller._sendCommand('?')
```
%% Output
'0.464288;'
';'
%% Cell type:code id:e1c88aaf tags:
%% Cell type:code id:5fd95fee tags:
``` python
controller.disconnect()
controller._sendCommand('o')
```
%% Output
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
~\AppData\Local\Temp/ipykernel_34064/1597917223.py in <module>
----> 1 controller.connect()
'0.900000;'
TypeError: connect() missing 1 required positional argument: 'port'
%% Cell type:code id:2fa51f26 tags:
``` python
controller.disconnect()
```
%% Cell type:code id:f23cc2e3 tags:
``` python
controller.ser.close()
```
%% Cell type:code id:7154d4dd tags:
%% 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