为什么arduino UNO采用外置供电时,不执行已下载的程序?
本帖最后由 firewise 于 2013-4-13 00:29 编辑求教各位高手,我的arduino UNO R3采用外部电源供电时,为什么不执行已下载的程序?采用USB供电时,则可以正常运行?
-----------------------------------------------------------------------------------------------
就是已下载Blink示例程序(LED改其他脚也一样)。
/*
Blink
Turns on an LED on for one second, then off for one second, repeatedly.
This example code is in the public domain.
*/
// Pin 12has an LED connected on most Arduino boards.
// give it a name:
int led = 12;
// 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
}
----------------------------------------------------------------------------------------------- 供电不足估计, 本帖最后由 firewise 于 2013-4-13 00:39 编辑
外部电源是9V 600mA,应该够了吧?Arduino UNO要求7~12V。
USB才5V,<=500mA呢? 用5V万能充,接USB口供电,arduino里的程序也能正常运行?
就是用外部供电口不行?
可能真的是供电问题吧 firewise 发表于 2013-4-13 00:57 static/image/common/back.gif
用5V万能充,接USB口供电,arduino里的程序也能正常运行?
就是用外部供电口不行?
可能真的是供电问题吧
山寨版的质量让人堪忧啊 :)我的也是UNO,没出现这种情况啊 按复位键试一下 试过了,我用的是交换机的变压器,可能是变压器问题吧,有空找别的再试试 最终确定为功率(电流)不足问题。
改用9V/1A的电源变压器,问题解决了。。。。 测一下你的输入电压是不是9V就知道啦。新手要好好分析问题,动动脑子,你的思维才能扩展开来
页:
[1]