“TESTPAGE”的版本间的差异

来自YFRobotwiki
跳转至: 导航搜索
 
(未显示1个用户的15个中间版本)
第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="width:100%"  
|-style="vertical-align:right;"  
+
|-style="vertical-align:top;"  
 
| style="padding: 5px;"|
 
| style="padding: 5px;"|
  
第59行: 第92行:
 
}
 
}
 
</source>
 
</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>
 +
 +
 +
  
 
=== 联系我们 ===
 
=== 联系我们 ===
第68行: 第122行:
 
QQ群【YFROBOT电子技术爱好者】:[https://jq.qq.com/?_wv=1027&k=51GCh75 243067479]
 
QQ群【YFROBOT电子技术爱好者】:[https://jq.qq.com/?_wv=1027&k=51GCh75 243067479]
  
 邮件 :finalvalue@yfrobot.com
+
 邮件 :yfrobot@qq.com

2023年9月15日 (五) 10:48的最后版本

页面测试中......

TEST



推荐
Arduino logo.png

Arduino 学习

Mixly logo.png

Mixly 学习

表格


Micro:Mate多功能微型扩展板 引脚说明
标号 名称 功能描述
1 耳机接口 用于直插3.5mm耳机
2 模拟输出口 兼容系列数字与模拟模块(仅兼容3V)
3 USB外接电源口 用于外接5V电源(不可用于上传程序)
4 数字口 兼容系列数字模块(兼容3V与5V)
5 数字口电源切换开关 用于切换3V,5V与OFF

代码高亮

/*
  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