projects
/
EVA-2020-02-2.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Adding Python 3 shebang
[EVA-2020-02-2.git]
/
examples
/
all-in-one.py
diff --git
a/examples/all-in-one.py
b/examples/all-in-one.py
index 87acc6fd8fbf09e4f5ebd9fd72a90ec2b674f3dc..03e4d5880d186e4cede2112ac836119b593b72f6 100755
(executable)
--- a/
examples/all-in-one.py
+++ b/
examples/all-in-one.py
@@
-201,7
+201,7
@@
try:
except pmsReadTimeoutError:
logging.warn("Failed to read PMS5003")
else:
except pmsReadTimeoutError:
logging.warn("Failed to read PMS5003")
else:
- data =
data.pm_ug_per_m3(1.0
)
+ data =
float(data.pm_ug_per_m3(1.0)
)
display_text(variables[mode], data, unit)
if mode == 8:
display_text(variables[mode], data, unit)
if mode == 8:
@@
-212,7
+212,7
@@
try:
except pmsReadTimeoutError:
logging.warn("Failed to read PMS5003")
else:
except pmsReadTimeoutError:
logging.warn("Failed to read PMS5003")
else:
- data =
data.pm_ug_per_m3(2.5
)
+ data =
float(data.pm_ug_per_m3(2.5)
)
display_text(variables[mode], data, unit)
if mode == 9:
display_text(variables[mode], data, unit)
if mode == 9:
@@
-223,7
+223,7
@@
try:
except pmsReadTimeoutError:
logging.warn("Failed to read PMS5003")
else:
except pmsReadTimeoutError:
logging.warn("Failed to read PMS5003")
else:
- data =
data.pm_ug_per_m3(10
)
+ data =
float(data.pm_ug_per_m3(10)
)
display_text(variables[mode], data, unit)
# Exit cleanly
display_text(variables[mode], data, unit)
# Exit cleanly