Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93463271
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
Thu, Nov 28, 23:29
Size
1 KB
Mime Type
text/x-python
Expires
Sat, Nov 30, 23:29 (2 d)
Engine
blob
Format
Raw Data
Handle
22642112
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_proximity
import
*
from
yocto_lightsensor
import
*
def
usage
():
scriptname
=
os
.
path
.
basename
(
sys
.
argv
[
0
])
print
(
"Usage:"
)
print
(
scriptname
+
' <serial_number>'
)
print
(
scriptname
+
' <logical_name>'
)
print
(
scriptname
+
' any '
)
sys
.
exit
()
def
die
(
msg
):
sys
.
exit
(
msg
+
' (check USB cable)'
)
errmsg
=
YRefParam
()
if
len
(
sys
.
argv
)
<
2
:
usage
()
target
=
sys
.
argv
[
1
]
# 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 Light sensor
p
=
YProximity
.
FirstProximity
()
if
p
is
None
:
die
(
'No module connected'
)
target
=
p
.
get_module
()
.
get_serialNumber
()
else
:
p
=
YProximity
.
FindProximity
(
target
+
'.proximity1'
)
if
not
(
p
.
isOnline
()):
die
(
'device not connected'
)
al
=
YLightSensor
.
FindLightSensor
(
target
+
'.lightSensor1'
)
ir
=
YLightSensor
.
FindLightSensor
(
target
+
'.lightSensor2'
)
while
p
.
isOnline
():
print
(
"proximity : "
+
str
(
int
(
p
.
get_currentValue
()))
)
print
(
"ambient : "
+
str
(
int
(
al
.
get_currentValue
()))
)
print
(
"IR : "
+
str
(
int
(
ir
.
get_currentValue
()))
)
YAPI
.
Sleep
(
1000
)
YAPI
.
FreeAPI
()
Event Timeline
Log In to Comment