gpt4 book ai didi

c++ - 以编程方式编译并上传到Arduino

转载 作者:太空宇宙 更新时间:2023-11-04 03:46:45 27 4
gpt4 key购买 nike

我知道使用默认的 Arduino IDE 进行基本的 arduino 开发。我正在为我的项目使用 Arduino Pro Mini 5V 板。

我需要能够以编程方式编译程序并将其上传到板上(而不是使用 Arduino IDE 中的按钮)。作为一项实验,我编写了一个基本的“闪烁 LED”示例代码,我希望能够对其进行编译,然后上传到 Arduino Pro Mini 开发板 - 全部以编程方式 - 而不是通过默认的 Arduino IDE。

如何通过终端而不是使用原生 Arduino IDE 将代码编译并通过 avrdude 上传到 Arduino Pro Mini?

/////////////////////////////////////////////////////
// BLINK LED ON ARDUINO PRO MINI (5V)
//
// http://arduino.cc/en/Main/ArduinoBoardProMini
/////////////////////////////////////////////////////

// For blinking an LED in arduino Pro Mini 5V
int blink_led = 13;

// the setup routine runs once when you press reset:
void setup() {
// Blink LED is an output pin.
pinMode(blink_led, OUTPUT);
}

void loop() {
// BLINK LED
digitalWrite(blink_led, HIGH); // turn the LED on (HIGH is the voltage level)
delay(50); // wait for a second
digitalWrite(blink_led, LOW); // turn the LED off by making the voltage LOW
delay(50); // wait for a second
}

最佳答案

你试过了吗Ino ?。它是一个命令行工具包,用于构建和上传 Arduino 草图。他们真的很好Getting Started Guide .

关于c++ - 以编程方式编译并上传到Arduino,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23777716/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com