Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
flow3r firmware
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
flow3r
flow3r firmware
Commits
d601ea25
Verified
Commit
d601ea25
authored
1 year ago
by
dos
Browse files
Options
Downloads
Patches
Plain Diff
i2c_scanner: Show scanning being in progress
parent
1fdc7654
No related branches found
No related tags found
1 merge request
!593
i2c_scanner: Show scanning being in progress
Pipeline
#9320
passed
1 year ago
Stage: check
Stage: build
Stage: deploy
Changes
1
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
python_payload/apps/i2c_scanner/__init__.py
+13
-2
13 additions, 2 deletions
python_payload/apps/i2c_scanner/__init__.py
with
13 additions
and
2 deletions
python_payload/apps/i2c_scanner/__init__.py
+
13
−
2
View file @
d601ea25
...
...
@@ -12,12 +12,16 @@ class I2CScanner(Application):
super
().
__init__
(
app_ctx
)
self
.
input
=
InputController
()
self
.
qwiic
=
I2C
(
1
,
freq
=
400000
)
self
.
_pending_scan
=
False
def
scan
(
self
):
self
.
_devices
=
self
.
qwiic
.
scan
()
print
(
"
Found Devices:
"
)
print
(
self
.
_devices
)
def
on_enter
(
self
,
vm
):
super
().
on_enter
(
vm
)
self
.
_devices
=
None
def
draw
(
self
,
ctx
:
Context
)
->
None
:
# Get the default font
...
...
@@ -38,7 +42,10 @@ class I2CScanner(Application):
ctx
.
font_size
=
16
ctx
.
move_to
(
0
,
yStart
+
yOffset
*
1
).
text
(
"
Press OK to Re-Scan
"
)
if
len
(
self
.
_devices
)
==
0
:
if
self
.
_devices
is
None
:
ctx
.
move_to
(
0
,
yStart
+
(
3
*
yOffset
)).
text
(
"
Scanning...
"
)
self
.
_pending_scan
=
True
elif
len
(
self
.
_devices
)
==
0
:
ctx
.
rgb
(
0.7
,
0.0
,
0.0
)
ctx
.
move_to
(
0
,
yStart
+
(
3
*
yOffset
)).
text
(
"
No Devices Found
"
)
else
:
...
...
@@ -56,7 +63,11 @@ class I2CScanner(Application):
super
().
think
(
ins
,
delta_ms
)
if
self
.
input
.
buttons
.
app
.
middle
.
pressed
:
self
.
_devices
=
self
.
qwiic
.
scan
()
self
.
_devices
=
None
if
self
.
_pending_scan
and
not
self
.
vm
.
transitioning
:
self
.
scan
()
self
.
_pending_scan
=
False
# For running with `mpremote run`:
...
...
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