Host Communication Protocol  2.0
doc/md/8_sensor.md
Go to the documentation of this file.
1 Sensor operations {#sensor}
2 ========
3 
4 \section wait_up_s Wait for finger up
5 
6 @startuml
7 Host --> BioMcu: CMD_WAIT \nARG_FINGER_UP \nARG_TIMEOUT[timeout]
8 ... Wait for finger up...
9 BioMcu --> Host: CMD_WAIT \nARG_RESULT[bep_result]
10 @enduml
11 ***
12 
13 \section wait_down_s Wait for finger down
14 
15 @startuml
16 Host --> BioMcu: CMD_WAIT \nARG_FINGER_DOWN \nARG_TIMEOUT[timeout]
17 ... Wait for finger down...
18 BioMcu --> Host: CMD_WAIT \nARG_RESULT[bep_result]
19 @enduml
20 ***
21 
22 \section sensor_reset_s Reset sensor
23 
24 @startuml
25 Host --> BioMcu : CMD_SENSOR \nARG_RESET
26 rnote over BioMcu : fpc_bep_sensor_reset
27 BioMcu --> Host : CMD_SENSOR \nARG_RESULT[bep_result]
28 @enduml
29 ***