Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92977586
helloworld.py
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Nov 25, 07:39
Size
1 KB
Mime Type
text/x-python
Expires
Wed, Nov 27, 07:39 (2 d)
Engine
blob
Format
Raw Data
Handle
22549348
Attached To
rSERVICENOWCHATALERT servicenow-chat-alert
helloworld.py
View Options
#!/usr/bin/python
# -*- coding: utf-8 -*-
import
os
,
sys
# add ../../Sources to the PYTHONPATH
sys
.
path
.
append
(
os
.
path
.
join
(
".."
,
".."
,
"Sources"
))
from
yocto_api
import
*
from
yocto_currentloopoutput
import
*
def
usage
():
scriptname
=
os
.
path
.
basename
(
sys
.
argv
[
0
])
print
(
"Usage:"
)
print
(
scriptname
+
' <serial_number> value'
)
print
(
scriptname
+
' <logical_name> value'
)
print
(
scriptname
+
' any value '
)
sys
.
exit
()
def
die
(
msg
):
sys
.
exit
(
msg
+
' (check USB cable)'
)
errmsg
=
YRefParam
()
if
len
(
sys
.
argv
)
<
3
:
usage
()
target
=
sys
.
argv
[
1
]
value
=
float
(
sys
.
argv
[
2
])
# Setup the API to use local USB devices
if
YAPI
.
RegisterHub
(
"usb"
,
errmsg
)
!=
YAPI
.
SUCCESS
:
sys
.
exit
(
"init error"
+
errmsg
.
value
)
if
target
==
'any'
:
# retreive any currentLoopOutput
loop
=
YCurrentLoopOutput
.
FirstCurrentLoopOutput
()
if
loop
is
None
:
die
(
'No module connected'
)
else
:
loop
=
YCurrentLoopOutput
.
FindCurrentLoopOutput
(
target
+
'.currentLoopOutput'
)
# we need to retreive the second loop from the device
if
not
loop
.
isOnline
():
die
(
'device not connected'
)
loop
.
set_current
(
value
)
loopPower
=
loop
.
get_loopPower
()
if
loopPower
==
YCurrentLoopOutput
.
LOOPPOWER_NOPWR
:
print
(
"Current loop not powered"
)
elif
loopPower
==
YCurrentLoopOutput
.
LOOPPOWER_NOPWR
:
print
(
"Insufficient voltage on current loop"
)
else
:
sys
.
exit
(
"current loop set to "
+
str
(
value
)
+
" mA"
)
YAPI
.
FreeAPI
()
Event Timeline
Log In to Comment