Library Search
结果页

2.8寸TFT ILI9341 技术手册

在 技术栈 中找到 8 个匹配结果。

返回文档库
技术栈

技术栈

8 个
查看全部
ESP-IDF /* ── 传感器数据结构(队列元素) ── */ typedef struct { int64_t timestamp_us; float temperature; float humidity; float pressure; uint32_t sequence; } sensor_data_t; /* ── 队列句柄 ── */ stat… 2% Arduino 1. 在 Arduino IDE **库管理器**安装:`DHT sensor library`、`Adafruit SSD1306`、`Adafruit GFX` 2. 按硬件表接线 3. 编译上传,打开串口监视器(9600 波特率) 4. 按按键切换显示模式 ## 预期输出 - OLED 实时显示温湿度(2 秒刷新) - 串口同步输出读数 - 按键切换 4 种模式:双排紧凑 → 大字温度… 2% C# ```html <!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8"> <title>Alpine.js Demo</title> <style> body { font-family: system-ui; max-width: 600px; margin: 50px auto; background: #… 2% KiCad ``` 步骤: 1. 放置焊盘 P1-P5(SMD,矩形)→ 属性设置尺寸和编号 2. 丝印层 (F.Silkscreen):绘制芯片外形框 3. 装配层 (F.Fab):绘制精确本体轮廓 4. courty层 (F.Courtyard):比本体大 0.25mm 的禁止放置区域 5. 添加 REF** 和 VAL** 占位文本 ``` ### 封装验证(DRC) 工具 → 检查封装 → 确保… 2% LightGBM ``` 正样本比例: 35.62% Training until validation scores don't improve for 20 rounds [50] valid_0's auc: 0.8234 [100] valid_0's auc: 0.8456 Early stopping, best iteration is [87] 测试准确率: 0.7823 最佳迭代轮次: 87 最… 2% Grafana ```json { "dashboard": { "title": "主机监控总览", "tags": ["prometheus", "node"], "timezone": "browser", "panels": [ { "title": "CPU 使用率", "type": "timeseries",… 2% Pytest ``` test_math_utils.py::test_divide_normal PASSED test_math_utils.py::test_divide_by_zero PASSED test_math_utils.py::test_is_prime[1-False] PASSED test_math_utils.py::test_is_prime[2-True] PASSED test… 2% PlatformIO ```ini ; platformio.ini [platformio] default_envs = uno ; 默认环境 ; ── 公共配置(所有环境继承) ── [common] monitor_speed = 115200 lib_deps = adafruit/Adafruit Unified Sensor @ ^1.1.14 ; ── Arduin… 1%