Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
aerobs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Andreas Gattringer
aerobs
Commits
397336eb
Commit
397336eb
authored
1 year ago
by
Andreas Gattringer
Browse files
Options
Downloads
Patches
Plain Diff
rhtp.py: use await
parent
d9c9c0e0
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
programs/rhtp.py
+2
-2
2 additions, 2 deletions
programs/rhtp.py
with
2 additions
and
2 deletions
programs/rhtp.py
+
2
−
2
View file @
397336eb
...
...
@@ -22,8 +22,8 @@ async def main():
p_sensor
=
LPS28DFW
(
i2c
)
while
True
:
t
,
rh
=
await
sht45
.
measure
()
p
=
p_sensor
.
pressure
()
p_t
=
p_sensor
.
temperature
()
p
=
await
p_sensor
.
pressure
()
p_t
=
await
p_sensor
.
temperature
()
print
(
f
"
temperature:
{
t
}
"
)
print
(
f
"
rH:
{
rh
}
"
)
print
(
f
"
pressure:
{
p
}
"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment