Loading...
  Show Posts
Pages: 1 [2] 3 4 ... 14
16  Using Arduino / Project Guidance / Re: Multiple Shift Registers Help. on: May 01, 2013, 07:20:03 am
Purely for the purposes of testing you might want to include a short delay in your for loop otherwise it will run so fast you won't be able to tell what's happening!
17  Using Arduino / Project Guidance / Re: Multiple Shift Registers Help. on: May 01, 2013, 07:15:55 am
replace  for(x=x, x<8, x++){

with

 for(int x=0; x<8; x++){
18  Using Arduino / Project Guidance / Re: Multiple Shift Registers Help. on: April 30, 2013, 01:59:26 pm
I don't know if this will help any:

http://www.gammon.com.au/forum/?id=11518

Also keep an eye on the maximum current you can draw from the '595.
19  Using Arduino / Project Guidance / Re: is there a way to disable one of the digital ports on: April 30, 2013, 07:05:03 am
What are you expecting to happen when you disable the pin/port?
20  Using Arduino / Programming Questions / Re: Problem with looping shiftOut command on: April 30, 2013, 04:18:23 am
Even your full code won't compile for me:

sketch_apr30a:16: error: 'i' was not declared in this scope
sketch_apr30a:27: error: expected `}' at end of input
21  Using Arduino / Programming Questions / Re: Is it possible... on: April 28, 2013, 06:40:51 pm
You should be able to remove all the carriage returns / line feeds from your program and it will still compile. The compiler is looking for the semi colons and the braces in your code.
22  Using Arduino / Programming Questions / Re: Need help accessing RTC for time on: April 28, 2013, 06:22:34 pm
Which rtc library are you using?
23  Community / Products and Services / Re: Pre-loved GPS modules available... first come first served... on: April 26, 2013, 04:10:31 am
They actually end up about £20 for one, including delivery and VAT. However, I was attracted by the simplicity so I took the plunge. Wired it up last night and I even got a fix (eventually) in the middle of my living room floor.

I only really bought it to set the time on my RTC projects!
24  Using Arduino / LEDs and Multiplexing / Re: Using two 8-bit shift registers on: April 19, 2013, 06:22:42 am
I don't know if this by Nick Gammon will be of any use?

http://www.gammon.com.au/forum/bbshowpost.php?id=11518
25  Using Arduino / Programming Questions / Re: Double 7 Segment Display with 2 Shift Registers on: April 19, 2013, 02:43:59 am
Different in what sense? All you do is light the individual segments in a particular pattern.

What code have you got so far?
26  Using Arduino / Programming Questions / Re: Double 7 Segment Display with 2 Shift Registers on: April 19, 2013, 02:18:07 am
Nick has an excellent page on the subject.

http://www.gammon.com.au/forum/bbshowpost.php?id=11518
27  Using Arduino / Displays / Re: SainSmart 3.2" TFT LCD and Touch..HELP!!!! on: April 18, 2013, 09:33:44 am
http://arduino.cc/forum/index.php/topic,121743.msg1009471.html#msg1009471
28  Using Arduino / Sensors / Re: dht11 and Arduino Uno on: April 18, 2013, 03:43:05 am
Not the order I would have guessed, but looking at it now one pin is marked 'S' (signal?) and another '-' (ground?).
29  Community / Bar Sport / Re: Arduino based replicator on: April 17, 2013, 02:26:04 pm
Come on now, it's not that difficult. I made one as my third project for Arduino - Blink, Blink without delay, Replicator.
30  Community / Bar Sport / Re: joke on: April 17, 2013, 02:04:29 pm
A Russian couple walks down a street in Moscow when the man feels a drop hit his nose.
"I think it's raining," he says to his wife.
"No, that feels like snow to me, dear," she replies.
Just then, a minor communist party official walks towards them.
"Let's not fight about it," the man says. "Let's ask Comrade Rudolph whether it's officially raining or snowing."
"It's raining, of course" Comrade Rudolph says and walks on.
But the woman insists, "I know that felt like snow."
To which the man quietly says, "Rudolph the Red knows rain, dear."

Pages: 1 [2] 3 4 ... 14