Loading...
  Show Posts
Pages: 1 [2] 3 4 ... 345
16  Using Arduino / Programming Questions / Re: IR Remote Decoding for AC on: May 16, 2013, 06:56:27 pm
What are AC remotes?
17  Using Arduino / Programming Questions / Re: Problem when changing pwm duty cycle Timer2 on: May 16, 2013, 06:55:38 pm
Since you aren't using the macros to set the bits in TCCR2B, what bits are you setting in that register?

Why are you setting them AFTER the compare registers?
18  Using Arduino / Installation & Troubleshooting / Re: Arduino UNO SMD Edition - avrdude: stk500_getsync(): not in sync: resp=0x30 on: May 16, 2013, 06:51:30 pm
What was the also sketch that you uploaded and what hardware have you connected to it before?  (Not just what was connected when the problem started)
19  Using Arduino / Installation & Troubleshooting / Re: Arduino uno v3 avrdude: stk500_getsync(): not in sync: resp=0x00 on: May 16, 2013, 06:50:35 pm
If loop back is failing and pin 13's LED never blinked, return it.
20  Using Arduino / Installation & Troubleshooting / Re: Can not see ports on: May 16, 2013, 06:49:41 pm
What do I do?
Install the FTDI drivers from ftdichip.com.
21  Using Arduino / Project Guidance / Re: Cycling L.E.D question on: May 15, 2013, 09:24:02 pm
You need to setup a simple state machine or at least use state variables.

Here's a tutorial I wrote on how to use millis (and state variables) to flash LEDs.  The code goes from using delay to using millis.

http://www.cmiyc.com/blog/2011/01/06/millis-tutorial/
22  Using Arduino / Installation & Troubleshooting / Re: Macbook Pro + Arduino Micro = Trouble? on: May 15, 2013, 09:21:17 pm
Please post code
23  Using Arduino / Programming Questions / Re: Question on millis() and how it disables interrupts on: May 13, 2013, 08:39:21 pm
Bit 7 of SREG is the global interrupt bit.

The function stores the value of SREG, disables the bit, then returns the bit to its previous state.
24  Using Arduino / Programming Questions / Re: Arduino IDE 1.0.3 serial monitor's screen will not re-size on: May 11, 2013, 12:52:24 pm
I searched the  preferences.txt file for "serial" and only thing I found was:
Okay so ADD the line then.

last.serial.location=51,22,500,500

Could installing HyperTerminal have something to do with it messing up the serial monitor's resize?
Only in the same way that launching Solitaire changes the current font you are using in Word.
25  Using Arduino / Installation & Troubleshooting / Re: Kinda Lost on what to do on: May 11, 2013, 09:42:14 am
Is this the right forum?

Flyduino Nanowii board
Which is what?

I did try to download the multiwii ide
Again, what is that?

if (versionMisMatch == 1) {textFont(font15);fill(#000000);text("GUI vs. Arduino: Version or Buffer size mismatch",180,420); return;}
That looks to be code that runs in something other than the standard Arduino IDE.

I did try to follow the instuctions but I'm kind of lost on what I need to do.
What instructions?  Whatever you are doing, it isn't a standard Arduino thing.  You're going to need to explain more about what you are doing, provide links, or go back to the vendor that sells the board you are using for support.
26  Using Arduino / Programming Questions / Re: Arduino IDE 1.0.3 serial monitor's screen will not re-size on: May 10, 2013, 06:06:12 pm
copy com5 fileName.txt
at the DOS prompt (XP pro) and ever since then my serial monitor's screen with not re-size.
That has nothing to do with the Serial monitor.  I suspect this is a coincidence not part of the issue.

the only thing Arduino IDE installs is the com drivers, and I'm not sure I know how to uninstall them
No, the IDE does not install any drivers.  

The drivers are already built into the OS.  For Windows (I don't know what Windoze is, maybe it is some kind of pirated thing?), you are actually giving it a description file that tells the OS the Arduino is a COM port.  They're actually called description files.

Regardless, fiddling with the COM port won't have any effect on the serial monitor's window size.  The serial monitor just talks to the serial port.  Since the window size is saved in the IDE's preferences.txt file, you can go and modify that.

Exit the IDE, search for "last.serial" and set it to something like:  
last.serial.location=0,0,500,500

Save and relaunch the IDE.
27  Using Arduino / Programming Questions / Re: Html Scheduling Function on: May 10, 2013, 05:52:17 pm
You probably want to look at a real-time-clock (RTC) chip.

The ds1307 is popular.  It works fine when powered, but I found them to lose track of time when run on battery backup.

My favorite is the DS3231 because it is very very stable.

Both work with the Arduino Time library, which will keep track of time without a RTC.  It just won't be as accurate and, obviously, not remember what time it is when the board is reset (or power cycled.)
28  Using Arduino / Installation & Troubleshooting / Re: wifi shield not present on arduino uno r3 on: May 10, 2013, 05:48:27 pm
Did you try the trick mentioned in the comments on http://arduino.cc/en/Main/ArduinoWiFiShield:

"If Arduino Wi-Fi shield is not detected, please make jumper between pins 7 and 3. Then your Arduino will recognize Wi-Fi shield."
29  Using Arduino / Installation & Troubleshooting / Re: Arduino Mega 2560 R3 takes ten seconds to start sketch on: May 10, 2013, 05:46:46 pm
That doesn't sound normal.  Please post your code.
30  Using Arduino / General Electronics / Re: PWM issue with Arduino Micro/Leonardo on: May 10, 2013, 04:01:44 pm
What about simplifying the code down to:

Code:
void setup() {
 analogWrite(3, 0);
}

void loop() {
}

Then move the write to loop().  
Pages: 1 [2] 3 4 ... 345