Anyone ever tried to remove the mitsubishi chip with the cmos sensor off the gb camera, then tried to get just the cartridge without the sensor to work? I'd like to use the sensor for a robot and still use my cartridge and it's trippy-h tracker. Can anyone help me with this?
It's easy to interface it, there're already completed projects so it's well documented. Plus, they have edge detection and other useful stuff.
I had these 2 links bookmarked: http://sophiateam.undrgnd.free.fr/microcontroller/camera/ http://www.atmel.com/dyn/resources/prod_documents/issue4_pg39_43_Robotics.pdf
Yeah, I've seen those, but they don't answer my question. How to get the cartridge still working even if the cmos camera has been removed? Cause it doesn't start up
Try feeding it data on 14, it says up to 2v. Try half a volt and you'll probably get an all grey screen response. Don't blame me if you get the magic smoke however.
That's what I thought, Just giving it data on the analog output pin via milimeter set on ampers. edit: nope, doesn't work. It must have some kind of start up sequence ;/
Yes it has a start up sequence, a part of it being a check on $a000 to see if the camera hardware has reported in ok. Without the hardware it never gets set and thus you get a blank screen. I hacked around and noticed the following. You can read more about the GB Camera here - http://www.devrs.com/gb/files/gbcam.txt Edit: Ok i got this to emulate by holding $a000 to 00 via the cheat feature in BGB. On real hardware you could use a Game Genie or other cheat device to hold $a000 also.
That's awesome stuff :O Hmm, How about I replaced the cam with an attiny and send the start-up sequence? EDIT: WOOT. Managed to start-it up! All you need to do is get READ(10), VOUT(14), to GND and you're good to go Thanks fro for all the info