(SKU: ARD030004)Arduino Pro Mini5V16M开发板兼容Arduino
来自YwRobot Studio Wiki
产品参数
- 尺寸:34*18mm
- 重量:7g
- 主芯片:ATMega328P
- 串口芯片:CH340
- I/O电压:5V
- 速度:16MHz
- 支持ISP下载功能
- 支持单片机TX/RX端子
- 支持AREF端子
- 有复位按键
- 支持串口
- Digital I/O 数字输入/输出端共14个(2-13)
- Analog I/O 模拟输入/输出端共8个(A0-A7)
- 支持六組PWM端子(Pin11,Pin10,Pin9,Pin6,Pin5,Pin3)
产品特性
- Arduino Pro Mini是-块基与开放源代码的超小Simple I/O平台,与之前的USB版Arduino Diecimila相比较,Arduino Pro Mini在体积上占很大优势,Arduino即可以用来开发出需要独立运行,并且具有互动效果的电子用品;也可以用来开发出与电脑相连接,同Flash,Processing,Max/Msp,PD,VVVV等软件一同合作完成的互动作品。
- 1、功能端口全部引出,功能强大,适用于多种环境。
- 2、小体积,适用开发可穿戴智能产品。
- 3、兼容Pro mini下载器,脱机后可以独立运行。
- 4、优化了布线设计和元件布局,优秀的PCB设计,视觉效果精致美观。
- 5、支持FTDI下载,性能稳定。
- Arduino官方网站:http://www.arduino.cc
- 编译软件下载地址:https://www.arduino.cc/en/Main/Donate
使用教程
样例代码
/* Blink Turns on an LED on for one second, then off for one second, repeatedly. This example code is in the public domain. */ // Pin 13 has an LED connected on most Arduino boards. // give it a name: int led = 13; // the setup routine runs once when you press reset: void setup() { // initialize the digital pin as an output. pinMode(led, OUTPUT); } // the loop routine runs over and over again forever: void loop() { digitalWrite(led, HIGH); // turn the LED on (HIGH is the voltage level) delay(1000); // wait for a second digitalWrite(led, LOW); // turn the LED off by making the voltage LOW delay(1000); // wait for a second } '''实验结果''':控制板上的D13口LED(带有L标识)闪烁,时间间隔1秒。
更多
[[YWRobot产品资料下载]https://pan.baidu.com/s/1_dsP8Be0FlU04GIFLOBWsA]
提取码:omtk