9348| 1
|
[入门教程] 使用Arduino IDE为micro:bit编程(二) |
micro:bit并点亮led">1. 配置micro:bit并点亮led1.1 Windows 7 安装驱动如果你的操作系统是Windows 7的话需要手动安装相关驱动,Mac、Win10或者Linux则可以省去这一步。 Arduino-ide">1.2 下载Arduino IDE这里我们下载桌面版的Arduino IDE,请确保下载最新版以使用完整特性。当然后续你也可以尝试PlatformIO进行编程,它同样支持Arduino Language。 1.3 在micro:bit上安装SoftDeviceArduino默认设备上已经安装了 当然你也不用担心,重新安装的过程也很简单,下载下方的小demo固件并拖放到MICROBIT设备中,这个MakeCode 蓝牙广播示例将会强制开启softdevice。 【下载MicroBit BTLE Advertising Demo】 1.4 添加NRF5x 开发板支持micro:bit所使用的nRF51控制器并没有被Arduino IDE原生支持,需要手动添加。 在
在 1.4 选择开发板并上传Sketch小程序在开发板菜单中选择 创建一个新的sketch,名字为 ```c++ void setup() { Serial.println("microbit is ready!"); // because the LEDs are multiplexed, we must ground the opposite side of the LED pinMode(LED, OUTPUT); void loop(){ digitalWrite(LED, HIGH);
|
请教下: const int COL1 = 3; // Column #1 control const int LED = 26; // 'row 1' led 这两句应该是LED点阵的位置吧?请问在Arduino IDE中,Micro:Bit的5×5LED点阵,具体是怎么排序的? 谢谢指点! |
© 2013-2025 Comsenz Inc. Powered by Discuz! X3.4 Licensed