Search found 14 matches

by jakers10
Wed Aug 15, 2018 12:24 pm
Forum: For Sale/Trade
Topic: [FOR SALE] GameBoy Zero parts $100 OBO
Replies: 1
Views: 2699

Re: [FOR SALE] GameBoy Zero parts $100 OBO

This still available? $50 + shipping?
by jakers10
Tue Oct 31, 2017 5:51 pm
Forum: Support (Game Boy Zero)
Topic: Programming Teensy LC
Replies: 12
Views: 12074

Re: Programming Teensy LC

I still can't get it and it doesn't seem that anybody is willing to help on this forum unless you are an admin or somebody popular. Oh well, I guess my project will sit.
by jakers10
Sun Sep 24, 2017 8:04 pm
Forum: Arduino
Topic: Teensy-LC programming help
Replies: 5
Views: 11555

Re: Teensy-LC programming help

How did you determine there was no data wire in the usb cable? I'm having the same issue programming the Teensy and I'm trying to figure out why.
by jakers10
Sun Sep 24, 2017 7:19 pm
Forum: Support (Game Boy Zero)
Topic: Teensy Help
Replies: 1
Views: 2135

Re: Teensy Help

Ok, so I'm not too sure what I just did, but somehow it is now compiling!!!! After verifying the code it opens up the Teensy loader app. I push the right facing arrow and then push the button on the Teensy. The blinking light finally goes off and I get the done uploading message! Now how do I test? ...
by jakers10
Sun Sep 24, 2017 7:01 pm
Forum: Support (Game Boy Zero)
Topic: Programming Teensy LC
Replies: 12
Views: 12074

Re: Programming Teensy LC

I just deleted everything off my pc and re downloaded everything. When I downloaded everything, I put it all in the same folder together. This is now the error that I am getting: C:\Users\Jake\AppData\Local\Temp\arduino_build_697432/core\core.a(mk20dx128.c.o): In function `ResetHandler': C:\Users\Ja...
by jakers10
Sun Sep 24, 2017 6:58 pm
Forum: Support (Game Boy Zero)
Topic: Teensy Help
Replies: 1
Views: 2135

Teensy Help

Is there anybody in the US that would I can send my Teensy LC to and have them program it for me? I am really having a hard time with the programming and I'm just at a loss right now. If anybody wants to help me out, please let me know!

Thanks
Jake
by jakers10
Sat Sep 23, 2017 7:21 pm
Forum: Support (Game Boy Zero)
Topic: Programming Teensy LC
Replies: 12
Views: 12074

Re: Programming Teensy LC

#include <Bounce.h> #define NUM_KEYS 12 struct Key { char keycode; Bounce* bounce; }; Key keys[NUM_KEYS]; Key key(char keycode, int pin) { Key *ret = new Key(); ret->keycode = keycode; ret->bounce = new Bounce(pin, 10); pinMode(pin, INPUT_PULLUP); return *ret; } void setupKeys() { keys[0] = key('w'...
by jakers10
Thu Sep 14, 2017 4:39 pm
Forum: General Chat (Game Boy Zero)
Topic: Programming help Please!!!!
Replies: 0
Views: 1811

Programming help Please!!!!

I downloaded Arduino 1.8.6 as it is supposedly supported by the newest Teensy version 1.39. Anybody else have any ideas? I'm not good at programming. Am I missing something here? This is the message I get now. In file included from C:\Program Files (x86)\Arduino\hardware\teensy\avr\cores\teensy3\Int...
by jakers10
Mon Sep 11, 2017 8:59 pm
Forum: Support (Game Boy Zero)
Topic: Programming Teensy LC
Replies: 12
Views: 12074

Re: Programming Teensy LC

I get the same error 1.39. I just can't figure this out!
by jakers10
Sat Sep 09, 2017 3:55 pm
Forum: Support (Game Boy Zero)
Topic: Issues programming Teensy LC. HELP!!!!
Replies: 3
Views: 3536

Re: Issues programming Teensy LC. HELP!!!!

Does anybody have any ideas on this? I'd like to get my Teensy programmed so I can try this thing out. The little carrots in the coding up above should be under the I in (IRQ_ and also under the n in + ((n). Any help would be great!