Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
FPSfirmware
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dorababu A
FPSfirmware
Commits
10c462d9
Commit
10c462d9
authored
2 years ago
by
Dorababu A
Browse files
Options
Downloads
Patches
Plain Diff
changed to globale variable array
parent
8893c229
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ReadRawData/py_fp_image.py
+3
-3
3 additions, 3 deletions
ReadRawData/py_fp_image.py
ReadRawData/src/src.cpp
+24
-18
24 additions, 18 deletions
ReadRawData/src/src.cpp
with
27 additions
and
21 deletions
ReadRawData/py_fp_image.py
+
3
−
3
View file @
10c462d9
...
...
@@ -6,12 +6,12 @@ temps = []
# replace space to new line
with
open
(
"
fp_data
4
.txt
"
,
"
r
"
)
as
r
:
with
open
(
"
fp_data
4
_new.txt
"
,
"
w
"
)
as
w
:
with
open
(
"
fp_data
6
.txt
"
,
"
r
"
)
as
r
:
with
open
(
"
fp_data
6
_new.txt
"
,
"
w
"
)
as
w
:
w
.
write
(
r
.
read
().
replace
(
'
'
,
'
\n
'
))
# Open text file and write to temp list
f
=
open
(
'
fp_data
4
_new.txt
'
)
f
=
open
(
'
fp_data
6
_new.txt
'
)
for
line
in
f
.
readlines
():
try
:
...
...
This diff is collapsed.
Click to expand it.
ReadRawData/src/src.cpp
+
24
−
18
View file @
10c462d9
...
...
@@ -20,7 +20,7 @@
DFRobot_ID809
fingerprint
;
uint8_t
ID
,
i
,
ret
;
uint8_t
data
[
25600
];
/*-----Blink on board led -------------- */
void
blink_led
()
{
...
...
@@ -30,35 +30,34 @@ void blink_led() {
delay
(
500
);
}
/*--------- Send raw data to serial port----*/
void
serialPrintFPdata
()
{
for
(
uint16_t
i
=
0
;
i
<
25600
;
i
++
)
{
// Serial.print(i);
// Serial.print('\t');
Serial
.
print
(
data
[
i
]);
Serial
.
print
(
" "
);
delay
(
10
);
}
// Serial.println();
// Serial.flush();
}
/*----- Read fingerpritn image data ------*/
void
read_image
()
{
// Full image of fingerprint
uint8_t
data
[
25600
]
=
{
0
};
//
uint8_t data[25600] = {0};
/*Set the fingerprint module LED ring to blue breathing lighting effect*/
fingerprint
.
ctrlLED
(
/*LEDMode = */
fingerprint
.
eBreathing
,
/*LEDColor = */
fingerprint
.
eLEDBlue
,
/*blinkCount = */
0
);
// Serial.println("Please release your finger");
/*Wait for finger to release
Return 1 when finger is detected, otherwise return 0
*/
while
(
!
fingerprint
.
detectFinger
());
// Collect full images
fingerprint
.
getFingerImage
(
data
);
delay
(
100
);
for
(
uint16_t
i
=
0
;
i
<
25600
;
i
++
)
{
// Serial.print(i);
// Serial.print('\t');
Serial
.
print
(
data
[
i
]);
Serial
.
print
(
" "
);
delay
(
10
);
}
Serial
.
println
();
Serial
.
flush
();
blink_led
();
}
/*---------Arduino setup function------*/
...
...
@@ -82,6 +81,13 @@ void setup() {
void
loop
()
{
read_image
();
/*Wait for finger to release
Return 1 when finger is detected, otherwise return 0
*/
while
(
!
fingerprint
.
detectFinger
())
{
blink_led
();
}
read_image
();
serialPrintFPdata
();
}
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