ESP32-S3 吊坠设备固件,集成火山引擎 RTC 语音助手、蓝牙配网、 VEML7700 环境光传感器驱动及石头同频匹配交友功能。 VEML7700 驱动: - 基于 ESP-IDF i2c_master API 实现,复用项目 I2cDevice 基类 - 支持 ALS + White 双通道、自动量程、Vishay 非线性校正 - 3 次采样取中位数过滤偶发异常 石头同频匹配算法(双维度): - 维度1:光谱比值 ALS/White(石头固有光学特征,不随光照强度变化) - 维度2:亮度等级(5级对数划分,排除极端环境差异) - 比值阈值 15%,实测同石头姿势变化波动 1.6%~9.6%,安全余量充足 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
74 lines
2.3 KiB
C
74 lines
2.3 KiB
C
#ifndef FONT_AWESOME_SYMBOLS_H
|
|
#define FONT_AWESOME_SYMBOLS_H
|
|
|
|
// 空的字体符号定义 - 用于无显示器的板子
|
|
// 所有符号都定义为空字符串,避免编译错误
|
|
|
|
#define FONT_AWESOME_PLAY ""
|
|
#define FONT_AWESOME_PAUSE ""
|
|
#define FONT_AWESOME_STOP ""
|
|
#define FONT_AWESOME_VOLUME_UP ""
|
|
#define FONT_AWESOME_VOLUME_DOWN ""
|
|
#define FONT_AWESOME_VOLUME_MUTE ""
|
|
#define FONT_AWESOME_WIFI ""
|
|
#define FONT_AWESOME_BATTERY ""
|
|
#define FONT_AWESOME_BLUETOOTH ""
|
|
#define FONT_AWESOME_MICROPHONE ""
|
|
#define FONT_AWESOME_SPEAKER ""
|
|
#define FONT_AWESOME_SETTINGS ""
|
|
#define FONT_AWESOME_INFO ""
|
|
#define FONT_AWESOME_WARNING ""
|
|
#define FONT_AWESOME_ERROR ""
|
|
#define FONT_AWESOME_SUCCESS ""
|
|
#define FONT_AWESOME_HEART ""
|
|
#define FONT_AWESOME_STAR ""
|
|
#define FONT_AWESOME_HOME ""
|
|
#define FONT_AWESOME_MENU ""
|
|
#define FONT_AWESOME_BACK ""
|
|
#define FONT_AWESOME_FORWARD ""
|
|
#define FONT_AWESOME_UP ""
|
|
#define FONT_AWESOME_DOWN ""
|
|
#define FONT_AWESOME_LEFT ""
|
|
#define FONT_AWESOME_RIGHT ""
|
|
#define FONT_AWESOME_POWER ""
|
|
#define FONT_AWESOME_REFRESH ""
|
|
#define FONT_AWESOME_SEARCH ""
|
|
#define FONT_AWESOME_CLOSE ""
|
|
#define FONT_AWESOME_CHECK ""
|
|
#define FONT_AWESOME_PLUS ""
|
|
#define FONT_AWESOME_MINUS ""
|
|
#define FONT_AWESOME_EDIT ""
|
|
#define FONT_AWESOME_DELETE ""
|
|
#define FONT_AWESOME_SAVE ""
|
|
#define FONT_AWESOME_LOAD ""
|
|
#define FONT_AWESOME_UPLOAD ""
|
|
#define FONT_AWESOME_DOWNLOAD ""
|
|
#define FONT_AWESOME_CLOUD ""
|
|
#define FONT_AWESOME_LOCK ""
|
|
#define FONT_AWESOME_UNLOCK ""
|
|
#define FONT_AWESOME_KEY ""
|
|
#define FONT_AWESOME_USER ""
|
|
#define FONT_AWESOME_USERS ""
|
|
#define FONT_AWESOME_MAIL ""
|
|
#define FONT_AWESOME_PHONE ""
|
|
#define FONT_AWESOME_CHAT ""
|
|
#define FONT_AWESOME_MESSAGE ""
|
|
#define FONT_AWESOME_NOTIFICATION ""
|
|
#define FONT_AWESOME_ALARM ""
|
|
#define FONT_AWESOME_CALENDAR ""
|
|
#define FONT_AWESOME_CLOCK ""
|
|
#define FONT_AWESOME_TIMER ""
|
|
#define FONT_AWESOME_STOPWATCH ""
|
|
|
|
// 添加缺失的符号定义
|
|
#define FONT_AWESOME_WIFI_OFF ""
|
|
#define FONT_AWESOME_WIFI_FAIR ""
|
|
#define FONT_AWESOME_WIFI_WEAK ""
|
|
#define FONT_AWESOME_SIGNAL_OFF ""
|
|
#define FONT_AWESOME_SIGNAL_1 ""
|
|
#define FONT_AWESOME_SIGNAL_2 ""
|
|
#define FONT_AWESOME_SIGNAL_3 ""
|
|
#define FONT_AWESOME_SIGNAL_4 ""
|
|
#define FONT_AWESOME_AI_CHIP ""
|
|
|
|
#endif // FONT_AWESOME_SYMBOLS_H
|