代码
/*!
* MindPlus
* mpython
*
*/
#include <MPython.h>
// 主程序开始
void setup() {
mPython.begin();
display.setCursorLine(1);
display.printLine("Mind+");
rgb.write(0, 0x0000FF);
rgb.write(1, 0xFF0000);
rgb.write(2, 0xFFFF00);
buzz.play(DADADADUM, Once);
}
void loop() {
}
评论