21 lines
302 B
C
21 lines
302 B
C
|
/*
|
||
|
* File name: head.h
|
||
|
* Author: JRNitre
|
||
|
* Version: MASVersion.0.0.0b
|
||
|
* Date: 2024-05-10
|
||
|
*
|
||
|
* Description:
|
||
|
* 头文件包含.
|
||
|
*/
|
||
|
|
||
|
#ifndef HEAD_h
|
||
|
#define HEAD_H
|
||
|
|
||
|
#include <Arduino.h>
|
||
|
#include <encoder.h>
|
||
|
#include <u8g2_display.h>
|
||
|
#include <MAShiroUI.h>
|
||
|
|
||
|
#define SERIAL_BAUD_RATE 115200
|
||
|
|
||
|
#endif
|