You've already forked M5Unit-FINGER
mirror of
https://github.com/m5stack/M5Unit-FINGER.git
synced 2026-05-20 11:42:13 -07:00
18 lines
594 B
Arduino
18 lines
594 B
Arduino
/*
|
|
* SPDX-FileCopyrightText: 2025 M5Stack Technology CO LTD
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
/*
|
|
Capture finger and show image example using M5UnitUnified for Unit/HatFinger
|
|
*/
|
|
// *************************************************************
|
|
// Choose one define symbol to match the unit you are using
|
|
// *************************************************************
|
|
#if !defined(USING_UNIT_FINGER) && !defined(USING_HAT_FINGER)
|
|
// #define USING_UNIT_FINGER
|
|
// #define USING_HAT_FINGER
|
|
#endif
|
|
// *************************************************************
|
|
#include "main/Capture.cpp"
|