“TESTPAGE”的版本间的差异
来自YFRobotwiki
(未显示1个用户的46个中间版本) | |||
第1行: | 第1行: | ||
− | = | + | <b><p style="color:#ef4136;font-size:18px;">页面测试中......</p> </b> |
− | + | [[TEST]] | |
− | |||
− | + | <br> | |
+ | {| border="0" cellpadding="5" width="100%" | ||
+ | |width="100%" valign="top" align="center" bgcolor=#d3d7d4 style="border-radius:5px;"| <font size="+1">'''推荐'''</font> | ||
+ | |} | ||
+ | {| border="0" color= "#00c5cd" cellpadding="5" width="100%" style="border:2px solid #00C5CD; border-radius:10px;"<!-- border:2px solid #00C5CD; class="wikitable" --> | ||
+ | |width="25%" valign="center" align="center"|[[Image:Arduino_logo.png|128px]] | ||
+ | <font color="darkcyan" size="+1">''' Arduino 学习 '''</font> | ||
− | + | |width="25%" valign="top" align="left"| | |
− | </ | + | *[[Arduino之入门篇]] <img src="http://www.yfrobot.com.cn/static/image/common/hot_1.gif" alt="hot" /> |
− | + | *[http://www.yfrobot.com.cn/portal.php Arduino入门教程] <img src="http://www.yfrobot.com.cn/static/image/common/hot_1.gif" alt="hot" /> | |
+ | *[http://www.yfrobot.com.cn/thread-11825-1-1.html Arduino IDE 下载] | ||
+ | *[[Arduino语法参考]] <img src="http://www.yfrobot.com.cn/static/image/common/hot_1.gif" alt="hot" /> | ||
+ | *[[Arduino库]] <img src="http://www.yfrobot.com.cn/static/image/common/hot_1.gif" alt="hot" /> | ||
+ | *[[Arduino定时器中断]]<img src="http://www.yfrobot.com.cn/static/image/common/recommend_1.gif" alt="recommend_1" /> | ||
+ | *[[Arduino核心代码]] | ||
+ | *[[Arduino常见问题]] <img src="http://www.yfrobot.com.cn/static/image/common/hot_1.gif" alt="hot" /> | ||
− | == | + | |width="25%" valign="center" align="center"|[[File:Mixly_logo.png|100px]] |
+ | <font color="darkcyan" size="+1">''' Mixly 学习 '''</font> | ||
− | === 下载 | + | |width="25%" valign="top" align="left"| |
+ | *[http://www.yfrobot.com.cn/thread-12032-1-1.html Mixly轻松入门] <img src="http://www.yfrobot.com.cn/static/image/common/recommend_2.gif" alt="recommend_2" /> | ||
+ | *[[YFRobot三方库ForMixly1.0/2.0]] | ||
+ | *[http://www.yfrobot.com.cn/thread-12032-1-1.html Mixly 软件 下载] | ||
+ | *[https://mixly.readthedocs.io/zh_CN/latest/basic/02Installation-update.html Mixly 官方入门WIKI] | ||
+ | *<strike>[http://www.yfrobot.com.cn/thread-37098-1-1.html YFRobot库 For Mixly]</strike> 旧版本 | ||
+ | |} | ||
− | + | === 表格 === | |
− | + | {| style="width:100%" | |
− | + | |-style="vertical-align:top;" | |
+ | | style="padding: 5px;"| | ||
− | |||
− | == | + | |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 || 模拟输出口 || 兼容系列数字与模拟模块(仅兼容3V) | ||
+ | |- style="text-align:center;" | ||
+ | |style="text-align:center;" | 3 || USB外接电源口|| 用于外接5V电源(不可用于上传程序) | ||
+ | |- style="background-color:#B7DDE8;text-align:center;" | ||
+ | |style="text-align:center;" | 4 || 数字口|| 兼容系列数字模块(兼容3V与5V) | ||
+ | |- style="text-align:center;" | ||
+ | |style="text-align:center;" | 5 || 数字口电源切换开关|| 用 于切换3V,5V与OFF | ||
+ | |} | ||
+ | |} | ||
− | + | === 代码高亮 === | |
− | * | + | <source lang="c"> |
− | + | /* | |
+ | 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); | ||
− | + | } | |
− | + | </source> | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | |||
− | + | === 嵌入视频 === | |
− | |||
− | |||
− | |||
− | |||
− | < | + | <html> |
− | < | + | <body> |
− | ==== | + | <iframe width="720" height="405" frameborder="0" src="https://www.ixigua.com/iframe/6996896855774724615?autoplay=0" referrerpolicy="unsafe-url" allowfullscreen=""></iframe> |
− | + | <br> | |
− | + | ||
− | ==== | + | <iframe height=405 width=720 src='https://player.youku.com/embed/XNTQwMTI0Nzcy' frameborder=0 'allowfullscreen'></iframe> |
+ | </body> | ||
+ | </html> | ||
− | + | <html> | |
− | + | <iframe width = "100%" height = "420" src = "http://docs.google.com/gview?embedded=true&url=http://file.yfrobot.com.cn/wiki/lego/sensorGuide/3. 按 键 模 块用户手册.pdf" ></iframe> | |
− | + | </html> | |
− | + | ||
− | |||
− | + | ||
+ | |||
+ | === 联系我们 === | ||
+ | |||
+ | YFROBOT网站:www.yfrobot.com | ||
+ | |||
+ | 手机:17696701116(微信/QQ同号) | ||
+ | |||
+ | QQ群【YFROBOT电子技术爱好者】:[https://jq.qq.com/?_wv=1027&k=51GCh75 243067479] | ||
+ | |||
+ | 邮件:yfrobot@qq.com |
2023年9月15日 (五) 10:48的最后版本
页面测试中......
推荐 |
Arduino 学习 |
Mixly 学习 |
表格
|
|
代码高亮
/* 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
邮件:yfrobot@qq.com