“TESTPAGE”的版本间的差异
来自YFRobotwiki
第1行: | 第1行: | ||
+ | === 表格 === | ||
+ | {| style="width:100%" | ||
+ | |-style="vertical-align:top;" | ||
+ | | style="padding: 5px;"| | ||
+ | |||
+ | [[文件:DFR0518 扩展板管脚接口图 3.png|300px|thumb|none|顶部示意图]] | ||
+ | [[文件:DFR0518 底面 05.png|300px|thumb|none|底部示意图]] | ||
+ | |style="padding: 10px;"| | ||
+ | {| style="width:450px; height:250px; " | ||
+ | |+Micro:Mate多功能微型扩展板 引脚说明 | ||
+ | |||
+ | |-style="background-color:#63B7CE;text-align:center;" | ||
+ | |style="text-align:center;" | '''标号'''||'''名称'''||'''功能描述''' | ||
+ | |- style="text-align:center;" | ||
+ | |style="text-align:center;" | 1 || 耳机接口 || 用于直插3.5mm耳机 | ||
+ | |- style="background-color:#B7DDE8;text-align:center; " | ||
+ | |style="text-align:center;" | 2 || 模拟输出口 || 兼容Gravity系列数字与模拟模块(仅兼容3V) | ||
+ | |- style="text-align:center;" | ||
+ | |style="text-align:center;" | 3 || USB外接电源口|| 用于外接5V电源(不可用于上传程序) | ||
+ | |- style="background-color:#B7DDE8;text-align:center;" | ||
+ | |style="text-align:center;" | 4 || 数字口|| 兼容Gravity系列数字模块(兼容3V与5V) | ||
+ | |- style="text-align:center;" | ||
+ | |style="text-align:center;" | 5 || 数字口电源切换开关|| 用于切换3V,5V与OFF | ||
+ | |} | ||
+ | |} | ||
+ | |||
+ | === 代码高亮 === | ||
<source lang="c"> | <source lang="c"> | ||
/* | /* |
2020年4月11日 (六) 10:24的版本
表格
|
代码高亮
/* 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