Arduino Nes controller, Please Help!

Topics merged.
Please don't start a new thread on the same subject.

Look up "Serial.write".

AWOL:
Topics merged.
Please don't start a new thread on the same subject.

Look up "Serial.write".

i did look it up, telling me "look up serial.write" doesnt tell me anything. i think as a moderator you could help? jeeze

and i get an answer already? so i can move on with my life? seriously why do i have to wait so long for a legit response?

Four minutes to a bump post?

"look up serial.write" doesnt tell me anything.

How am I supposed to know that?

i think as a moderator you could help?

I saved you the embarrassment of having your cross-posting reported as a violation of forum rules, didn't I?

AWOL:
Four minutes to a bump post?

"look up serial.write" doesnt tell me anything.

How am I supposed to know that?

i think as a moderator you could help?

I saved you the embarrassment of having your cross-posting reported as a violation of forum rules, didn't I?

... talk about policing, is this where i come to get help? or is it a place for forum moderators to do their job?

I'm a janitor, not a policeman.

I clean up after untidy posters.

AWOL:
I'm a janitor, not a policeman.

I clean up after untidy posters.

my post was tidy, till you guys messed it up, and how about you answer my problem so you can stop "cleaning up" the post. instead of wasting time telling me that my post is messy, invest the time into helping someone? get on my level

{SIGH}

Serial.print(output, BYTE);
Serial.write (output);

AWOL:
{SIGH}

Serial.print(output, BYTE);
Serial.write (output);

cmon im not that stupid. i already tried that.

cmon im not that stupid. i already tried that.

Must...resist...

Quite.

Here's the error message I got with that one change:

Binary sketch size: 2508 bytes (of a 14336 byte maximum)

Over to you.

AWOL:
Quite.

Here's the error message I got with that one change:

Binary sketch size: 2508 bytes (of a 14336 byte maximum)

Over to you.

well when you process it, nothing, i got no errors with processing... so...

well when you process it, nothing,

I have no idea what that means.

AWOL:

well when you process it, nothing,

I have no idea what that means.

well night, ive been trying to solve this for 8+ hours now. its 3am, bye

I've already got Processing, thank you, what I don't have is a NES controller.
Have you tried serial debugging your Arduino?

const int latch = 2;
const int clock = 3;
const int data  = 4;

#define latchlow digitalWrite(latch, LOW)
#define latchhigh digitalWrite(latch, HIGH)
#define clocklow digitalWrite(clock, LOW)
#define clockhigh digitalWrite(clock, HIGH)
#define dataread digitalRead(data)
#define wait delayMicroseconds(200)

byte output;

void setup() 
{
	Serial.begin(9600);
	pinMode(latch, OUTPUT);
        pinMode(clock, OUTPUT);
        pinMode(data, INPUT);
}

void loop() 
{
  output = 0;
  ReadNESjoy();
 // Serial.write(output);
  Serial.println ((unsigned int)output);
}


void ReadNESjoy() 
{
  latchlow;
  clocklow;
  latchhigh;
  wait;
  latchlow;
  for (int i = 0; i < 8; i++) {
     clockhigh;
     wait;
     output += dataread * (1 << i);
     clocklow;
     wait;
  }
}

See what you get in the serial monitor.

AWOL:
I've already got Processing, thank you, what I don't have is a NES controller.
Have you tried serial debugging your Arduino?

See what you get in the serial monitor.

i dont know how to debug, and when i serial monitor, i get a bunch of "0"

Craftee:
so i have this old peice of code here, and i get an error saying "The 'BYTE' keyword is no longer supported" so what do i use instead? please help!

This is a really confusing thread. I got the impression until the last post or so that you hadn't solved the above problem, after all the begging for help.

Instead, you have solved it and replaced it with another one (the sketch compiles but doesn't do what you expect).

You could have made that a lot clearer, instead of:

well when you process it, nothing, i got no errors with processing... so...

C'mon on, we can't read minds.

Craftee:
i dont know how to debug, and when i serial monitor, i get a bunch of "0"

Copy and paste what you get in the serial monitor.

Copy and paste what you get in the serial monitor.

0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0

and it spams it, nonstop