“TESTPAGE”的版本间的差异
来自YFRobotwiki
第22行: | 第22行: | ||
YF_4BitDis.displayString(String("____")); | YF_4BitDis.displayString(String("____")); | ||
delay(1000); | delay(1000); | ||
− | |||
− | |||
− | |||
− | |||
for (int i = 1; i <= 8; i++) { | for (int i = 1; i <= 8; i++) { | ||
YF_4BitDis.setBrightness(i); | YF_4BitDis.setBrightness(i); | ||
− | |||
− | |||
− | |||
− | |||
delay(200); | delay(200); | ||
} | } | ||
第39行: | 第31行: | ||
delay(1000); | delay(1000); | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
} | } | ||
</source> | </source> |
2020年4月8日 (三) 15:11的版本
/* 8-segment display driver of YFRobot 4-bit digital tube module based on TM1650 chip Created by yfrobot,Released into the public domain. */ #include <YFTM1650.h> YFTM1650 YF_4BitDis(10, 11); void setup() { Serial.begin(38400); //Start serial communication at 9600 for debug statements Serial.println("YFRobot TM1650 Example Code"); YF_4BitDis.init(); } void loop() { YF_4BitDis.setBrightness(1); YF_4BitDis.displayString(String("____")); delay(1000); for (int i = 1; i <= 8; i++) { YF_4BitDis.setBrightness(i); delay(200); } YF_4BitDis.displayString(-1.235); delay(1000); }
联系我们
YFROBOT网站:www.yfrobot.com
手机:17696701116(微信/QQ同号)
QQ群【YFROBOT电子技术爱好者】:243067479
邮件:finalvalue@yfrobot.com