Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
firmware
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
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
card10
firmware
Commits
b292cde2
Commit
b292cde2
authored
4 years ago
by
schneider
Browse files
Options
Downloads
Patches
Plain Diff
feat(ble): Update ble app to support pairing
parent
4ce6aada
No related branches found
No related tags found
No related merge requests found
Pipeline
#4597
passed
4 years ago
Stage: build
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
preload/apps/ble/__init__.py
+73
-28
73 additions, 28 deletions
preload/apps/ble/__init__.py
with
73 additions
and
28 deletions
preload/apps/ble/__init__.py
+
73
−
28
View file @
b292cde2
...
...
@@ -9,29 +9,21 @@ CONFIG_NAME = "ble.txt"
MAC_NAME
=
"
mac.txt
"
ACTIVE_STRING
=
"
active=true
"
INACTIVE_STRING
=
"
active=false
"
event
=
None
def
numeric_comparison_callback
(
_
):
compare_value
=
sys_ble
.
get_compare_value
()
disp
.
clear
()
disp
.
print
(
"
confirm:
"
,
posy
=
0
,
fg
=
[
0
,
255
,
255
])
disp
.
print
(
"
%d
"
%
compare_value
,
posy
=
20
,
fg
=
[
255
,
0
,
0
])
disp
.
update
()
while
True
:
v
=
buttons
.
read
()
if
v
&
buttons
.
TOP_RIGHT
:
sys_ble
.
confirm_compare_value
()
break
elif
v
!=
0
:
break
utime
.
sleep
(
0.1
)
def
ble_callback
(
_
):
global
event
event
=
sys_ble
.
get_event
()
def
init
():
if
CONFIG_NAME
not
in
os
.
listdir
(
"
.
"
):
with
open
(
CONFIG_NAME
,
"
w
"
)
as
f
:
f
.
write
(
INACTIVE_STRING
)
interrupt
.
set_callback
(
10
,
numeric_comparison
_callback
)
interrupt
.
set_callback
(
10
,
ble
_callback
)
interrupt
.
enable_callback
(
10
)
sys_ble
.
set_bondable
(
True
)
def
load_mac
():
...
...
@@ -86,21 +78,74 @@ def selector():
disp
.
print
(
"
toggle
"
,
posx
=
25
,
posy
=
40
,
fg
=
[
255
,
255
,
255
])
disp
=
display
.
open
()
button_pressed
=
True
init
()
disp
=
display
.
open
()
state
=
1
v_old
=
buttons
.
read
()
while
True
:
disp
.
clear
()
headline
()
v
=
buttons
.
read
(
buttons
.
TOP_RIGHT
)
if
v
==
0
:
button_pressed
=
False
if
not
button_pressed
and
v
&
buttons
.
TOP_RIGHT
!=
0
:
button_pressed
=
True
toggle
()
v_new
=
buttons
.
read
()
v
=
~
v_old
&
v_new
v_old
=
v_new
if
state
==
1
:
# print config screen
disp
.
clear
()
headline
()
selector
()
disp
.
update
()
state
=
2
elif
state
==
2
:
# wait for button press or event
if
event
==
1
:
event
=
0
state
=
3
if
v
&
buttons
.
TOP_RIGHT
:
toggle
()
state
=
1
elif
state
==
3
:
# print confirmation value
compare_value
=
sys_ble
.
get_compare_value
()
disp
.
clear
()
disp
.
print
(
"
confirm:
"
,
posy
=
0
,
fg
=
[
0
,
255
,
255
])
disp
.
print
(
"
%06d
"
%
compare_value
,
posy
=
20
,
fg
=
[
255
,
0
,
0
])
disp
.
update
()
state
=
4
elif
state
==
4
:
# wait for button press or event
if
event
==
2
:
event
=
0
state
=
6
if
v
&
buttons
.
BOTTOM_RIGHT
:
sys_ble
.
confirm_compare_value
(
True
)
disp
.
clear
()
disp
.
print
(
"
Wait
"
,
posy
=
0
,
fg
=
[
0
,
255
,
255
])
disp
.
update
()
state
=
5
elif
v
&
buttons
.
BOTTOM_LEFT
:
sys_ble
.
confirm_compare_value
(
False
)
state
=
1
elif
state
==
5
:
# Wait for pairing to complete
if
event
==
2
:
event
=
0
state
=
6
elif
event
==
3
:
event
=
0
disp
.
clear
()
disp
.
print
(
"
OK
"
,
posy
=
0
,
fg
=
[
0
,
255
,
255
])
disp
.
update
()
time
.
sleep
(
5
)
state
=
1
elif
state
==
6
:
# display fail screen and wait 5 seconds
disp
.
clear
()
disp
.
print
(
"
Fail
"
,
posy
=
0
,
fg
=
[
0
,
255
,
255
])
disp
.
update
()
time
.
sleep
(
5
)
state
=
1
selector
()
disp
.
update
()
time
.
sleep
(
0.1
)
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