Skip to content

Commit f00e219

Browse files
committed
修复太空人动画
1 parent c67ff6e commit f00e219

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Animate/Animate.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ void imgAnim(const uint8_t **Animate_value, uint32_t *Animate_size)
2020
//太空人起飞
2121
#if Animate_Choice == 1
2222
*Animate_value = astronaut[Animate_key];
23-
*Animate_size = astronaut[Animate_key];
23+
*Animate_size = astronaut_size[Animate_key];
2424
if (Animate_key >= 9)
2525
Animate_key = -1;
2626
//胡桃摇

src/config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#define Animate_Choice 2 //动图选择:1,太空人图片 2,胡桃
1+
#define Animate_Choice 1 //动图选择:1,太空人图片 2,胡桃
22
#define TMS 1000 //一千毫秒
33
#define WM_EN 1 // WEB配网使能标志位----WEB配网打开后会默认关闭smartconfig功能
44
#define DHT_EN 0 //设定DHT11温湿度传感器使能标志

0 commit comments

Comments
 (0)