You've already forked M5Unit-HEART
mirror of
https://github.com/m5stack/M5Unit-HEART.git
synced 2026-05-20 11:28:19 -07:00
19 lines
553 B
Arduino
19 lines
553 B
Arduino
/*
|
|
* SPDX-FileCopyrightText: 2026 M5Stack Technology CO LTD
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
/*
|
|
Example using M5UnitUnified for UnitHeart / HatHeart
|
|
*/
|
|
// *************************************************************
|
|
// Choose one define symbol to match the unit you are using
|
|
// *************************************************************
|
|
#if !defined(USING_UNIT_HEART) && !defined(USING_HAT_HEART)
|
|
// For UnitHeart (U029)
|
|
// #define USING_UNIT_HEART
|
|
// For HatHeart (U118)
|
|
// #define USING_HAT_HEART
|
|
#endif
|
|
#include "main/PlotToSerial.cpp"
|