Skip to content

The DashBoy Camera, a 8-bit digital camera made with the Mitsubishi M64282FP sensor of the Game Boy Camera and a Raspberry Pi Pico. Also supports the rare M64283FP sensor. Made for fans by a fan.

License

Notifications You must be signed in to change notification settings

Raphael-Boichot/Mitsubishi-M64282FP-dashcam

Repository files navigation

The DASHBOY CAMERA

A 8-bit digital camera made from the Mitsubishi M64282FP artificial retina and a Raspberry Pi Pico.

Media coverage:

The project fully emulates the sensor management strategy of the Game Boy Camera while completely bypassing the MAC-GBD mapper, which means you can record pixel perfect images without the limitation of storage space or the need for a Game Boy Printer emulator. The device can output dithered 2 bits per pixel images (like the Game Boy Camera) as well as smooth 8 bits per pixel images that take advantage of the full sensor bit-depth. It features time lapse recording, live recording, motion detection, High Dynamic Range, multi-exposure, night mode, Peak Focusing, Slit-scan photography, fancy borders and even more.

The code was developped for the Raspberry Pi Pico and the Arduino IDE, using the Earle F. Philhower RP2040 core. TFT display is driven with the Bodmer TFT_eSPI library. The code originates from an Arduino version that requires a PC. This project was preceded by a regrettable attempt to do the same with an ESP32 (good luck porting back the code to it with the same functions now).

If you manage to touch the unobtainium M64283FP sensor, which is an advanced version of the M64282FP, it is fully compatible with the present device (and more or less with the Game Boy Camera, see the full story. I was lucky enough to get some and study how to make them work smoothly.

You're of course free to modify this project as you wish, all sources are available here (all files for PCBs, all source codes, all documentation used). The project was designed to be clean, cheap and easy to make (requiring only cheap and very common parts, very basic soldering skills, no 3D printed parts, simple Arduino IDE environment and some hot glue). Fork it and play with it !

Picture of the device (example of PCB V1.0)

Dashboy Camera V1.0

Multi-systems installation guide

  • Just drop the compiled uf2 file to the board in mass storage media mode (Connect the Pico to USB port with the BOOTSEL button pushed and release).

Or if you can sustain moderate pain:

Then:

  • Locate the TFT_eSPI library: \Arduino\libraries\TFT_eSPI folder in your Arduino libraries

  • copy the configuration file for the TFT display in this folder.

  • edit the User_Setup_Select.h and modify line 29:

    #include <Mitsubishi_M64282FP_dashcam_TFT_eSPI_setup.h> // Default setup is root library folder

  • Compile your code with frequency set at CPU Speed: "133 MHz" and Optimize: "Optimize even more (-O3)" (Menu Tools) and flash the .uf2 to your board (Arduino IDE does that automatically once you've pressed the BOOTSEL button once).

  • Enjoy your brand new 0.015 Mpixels camera !

Casual user manual (requirement: just pushing buttons)

The Dashboy Camera uses a configuration file that must be placed at the root of SD card which has priority on the internal default parameters. The device cannot boot without a working sensor and a working SD card. Status of sensor, SD card and configuration file are indicated on the splashscreen.

  • Once the device is booted, it adapts the sensor exposure for 3 seconds then runs in Display mode. Display mode does nothing else than showing on display what the Mitsubishi sensor sees at the maximum refresh rate allowed by the device. The green LED indicates the exposure time. It can go from approx 250 microseconds to 1 second depending on lighting conditions. The red LED indicates access to the SD card for recording (or error at boot).
  • There are four main modes: Regular Camera mode to take picture one by one like any camera, Motion sensor mode that triggers pictures according to image change, Timelapse mode to automatically take pictures with a delay inbetween and Slit-scan mode* to perform slit-scan photography. Shifting from one mode to the other is made by pushing the TIMELAPSE button. It rolls over a list of exposure delays for time lapse and the three other modes. In the json configuration file, delays are entered in ms, a value of -1 indicates a return to Regular camera mode, a value of -2 indicates a shift to Motion sensor mode and a value of -3 or -4 triggers one of the two slit-scan modes. Keep the total length of the table at 8 entries !
  • In Timelapse mode, each recording session uses a different folder to store images. Timelapse mode has virtually no ending, it can go as long as the SD card is not full. The device enters a sleeping loop every 1/10 of the timelapse delay and wake up only briefly to accomodate exposure. The happy consequence is that electrical consumption falls to almost zero. The drawback is that the interface is less responsive. You typically have to push buttons for a certain time to get a response.
  • In Regular camera mode, pressing the button just records one image in the /camera folder. If the button stays pushed, images are recorded continuously with a debouncing delay. It acts more or less as a burst mode.
  • In Motion sensor mode, the DashBoy camera takes pictures automatically when it senses a motion. The threshold can be configured in the json configuration file.
  • In Slit-scan modes, you can perform Slit-scan photography. Image is recorded along the yellow line, one line per frame taken as fast as possible (or with a fixed delay inbetween, see config.json), until user presses the PUSH button again. In slit scan mode inf., The central pixel vertical line is stacked until image reaches 4096 pixels (the loop automatically increments files if necessary, there is no limit in file quantity during one run, so the "infinite"). In slit scan mode x128, a 128 pixel width image is recorded by scanning slits along the whole sensor from left to rigth. Slit-scan mode disables the auto-exposure, the dithering and the HDR mode. Other recording modes (time lapse and motion sensor mode) are not affected. A tripod is warmly recommended as you will loose display (on purpose) during recording.

To activate HDR mode or Dithering mode, simply push the corresponding pushbuttons.

HDR mode (High Dynamical Range) take several images from -1EV to +1EV and make an average of them before recording. This increases the dynamic range of the sensor. The list of exposures can be modified in the config.json. Keep the total length of the table at 8 entries !

Dithering mode mimicks the dithering process of a Game Boy Camera with 4x4 derived Bayer matrices. Dithering matrices generated online can be copied in the config.json file.

Finally, you can lock exposure time from the current best one in any mode by pressing the LOCK_EX push button. It displays a green screen border when it is on.

It is mandatory to format the SD card in FAT32 and it is better to use the maximum sector size possible to speed up writing and avoid stalling. The data transfer rate to the SD card is indeed the bottleneck of the device.

The device can output 1x BMP images as well as a compressed image format and the projects comes also with a bunch of tools to convert and upscale these formats and make videos and animated gifs from them.

Using the DashBoy Camera "in a nutshell"

DashBoy Camera in a nutshell

Advanced user manual (requirement: playing with json file)

Additionally, you can address some other cool features by entering them in the config.json:

  • Game Boy Camera mode (default ON) drives the DashBoy Camera exactly as the Game Boy Camera does, using the same register strategy and the same dithering matrices. Images made in this mode are pixel identical to images produces with a Game Boy Camera in the same lighting condition if dithering is activated. When set to 0, this triggers a simplier "recipe" with fixed registers and fixed dithering matrix.
  • Raw recording mode (default ON) available in time lapse mode and motion sensor mode, records sensor data as a single file in the /TL or /MS folders respectively. It needs a separate tool for extracting an animation (provided here). The 16 first bytes are keywords, image sizes (width and height in pixels) and registers, the following are raw data for one image in reading order, easy to recover with any other tool ! This mode allows recording at a solid 4 fps for long time with good light conditions. It is disabled in Regular camera mode (point and shoot), command is just ignored. When disabled, images are just recorded in plain 1x BMP in separate folders.
  • Pretty border mode (default ON on first border) generates 160x144 images with a fancy border like the Game Boy Camera. You can make your own with the tools provided to generate C-files. To roll between borders, just reboot the DashBoy while it accomodates for exposure after boot (between the two short red flashes).
  • Focus peaking (default OFF) allows embossing the area with the best sharpness as focusing with such low definition on a tiny LCD screen can sometimes be tricky. Very practical if you couple the device with a CS mount, as the focusing plan can be hard to find with such low definition !
  • Night Mode (default OFF) allows automatically downclocking the device in case the exposure registers reaches their theoretical maximal value (0xFFFF). This is usefull to do light painting from example, the sensor being natively not able to expose more than 1 second. Here there is no limit.
  • Fixed exposure mode (default OFF) allows bypassing the autoexposure algorithm and fixing a value, useful for astrophotography where auto-exposure performs poorly. In this case you have to enter the exposure time or delay (between 0x0030 - 0.768 ms and 0xFFFF - 1.044 second) and the clock divider (a multiplier for the exposure time, stay at 1 if you do not know what to do.)
  • 2D enhancement mode (default OFF) enforces the 2D image enhancement processed by the sensor in Game Boy Camera mode & non dithering mode only, whatever the register used.
  • Color Mode (default OFF) gives help to change RGB filters manually and outputs PWM servo signal to GPIO22 in order to drive a color filter wheel. Servo arm angle for the color filter wheel can be set by the json configuration file. Using a complementary IR filter in addition to RGB filters is strongly recommended to get more accurate results.

Nerd user manual (requirement: recompiling the code)

You can also directly play with the #define options in config.h and recompile the code to:

  • deactivate the Leds (sneak mode);
  • deactivate the SD card or the TFT screen to debug;
  • activate the serial output and spit images as hexadecimal text to interface the camera with another software like Matlab, but it is rather slow. I used that initially for debugging without display, and I kept that mode for tricky bugs requiring access to the arrays for example;
  • change screen driver from ST7735 128x128 pixels (default) to ST7789 256x256 pixels TFT display. Beware, you must also modify the config file (comment/uncomment stuff, everything is explained) for the TFT library, see the installtion guide;
  • activate overclocking at the maximum possible frequency that do no crashes but it drains battery too fast to my own taste, despite being a bit more responsive;
  • deactivate the display of exposure offset and exposure delay in time units if it bothers you (why not after all, I though it was fun to keep it);
  • activate the debagame mode that give access to advanced sensor calibration parameters and real hex registers. It displays on screen the voltage of masked pixels, the offset voltage, the register O and the register V and compare them to see how far the camera is from perfect calibration.

Some pictures made with the M64282FP sensor (old border)

Dashboy Camera pictures

More pictures made with the M64282FP sensor (actual border)

Dashboy Camera pictures

Pictures were taken with the original plastic lens, CCTV lenses, CCTV fisheye with M12/CS adapters, and a Tair-3s 300mm f/4.5 soviet telelens with a M42 lens mount or sensor glued into a Zenit 12XP hand made shell adapter.

Examples of slit-scan pictures and modes

The slit-scan mode infinite makes streaks whatever the scene. It gives interesting effects with long moving objects (trains) or natural scenes in the wind. It completely obliterates the background and only moving objects can be seen. It acts exactly as a photo-finish, in slower however due to sensor limitations. The slit-scan mode x128 scans the whole scene line by line, the immobile backgroung is conserved. Only the moving objects of the scene will be deformed in a grotestque fashion. Using this mode with a Game Boy Camera sensor is an idea of Andreas Hahn. Both mode loop infinitely as long as PUSH is not pressed.

Some timelapses made with the M64282FP sensor

Dashboy Camera pictures

Dashboy Camera pictures

Dashboy Camera pictures

Example of dithered/non dithered image, M64282FP sensor

Dashboy Camera pictures

Examples of artifacts intrinsic to the M64282FP sensor

Dashboy Camera pictures

Examples of image/timelapse taken with a M64283FP sensor

Dashboy Camera pictures

Dashboy Camera pictures

Examples of artifacts intrinsic to the M64283FP sensor

Dashboy Camera pictures

Because it had to be done !

These animations were done by simply stacking images taken 3 by 3 with RGB filters (auto-exposure activated). Lens is equipped with an IR filter too. Without IR filter, images in outdoor conditions have serious color issues (they always appear pinkish, I mean even more than these examples, without any way to correct the hue distorsion). Images were stacked with a dedicated Matlab code but I guess that any image software could do the trick.

Building the device !

Required parts

The total cost (Game Boy Camera not included), considering that you start from scratch, is about 35€ (PCB included). It has been designed to use ultra-cheap and ultra-common parts only. Most of parts can be recycled from used electronics or Arduino related projects. If you're a bit into electronics, you probably yet have most of the parts somewhere on shelves. It is fully through-hole on purpose so it necessitates nothing but very basic skills in soldering.

So you will need:

The device is meant to be used with AA NiMH batteries. Lithium batteries are evil because they are unstable (I'm definitely dubious about long term storage of what will eventually end as spicy pillows and fire hazard), not recycled (less than 1% in the best IEA scenario) and non generic at all in terms of size in case of reuse. The device does not allow to recharge these batteries as NiMH requires very specific charging strategy. It can run with alkaline batteries too (even pretty discharged). You can of course alter the design to use it with Lithium batteries and embedded charger, it works perfectly too (my first design used a DD05CVSA charge discharge circuit). You can consult here the sketch of the initial prototype to adapt a lithium battery charger. Beware, this early prototype has pinout that differs significantly from the current one.

PCB and connection with the sensor

PCB are available in the PCB folder of the project. To connect the sensor to the board, use a female JST connector with bended pins in order to inverse the gender of the JST cable, or simply order the breakout PCB. Be carefull with the polarity: both faces of the cables must be the same (camera sensor cable side and extension cable side, see following images). This situation corresponds also to the INPUT<->NORMAL OUT of the breakout board if you order the extension cables given in Required parts section.

Dashboy Camera connections

PCBs can be ordered at JLCPCB by simply uploading the gerber zip container to their site. JLCPCB has the advantage to be cheap and clean with the VAT for EU customers. Order HASL finish with 1.6 mm thickness for the two boards (default option). PCB designs and schematics can be edited with EasyEDA Standard Edition.

Building instructions

  • Solder the Pi Pico first: it must be mandatorily soldered on the castellated holes, without pin headers or spacer, directly on the PCB
  • Solder the lower parts next: LEDs (RED and GREEN), resistors (RRED and RGREEN), level shifters, push buttons, JST connector, microswitches (MAIN and DISPLAY), capacitor (CAP1) and DC-DC converter. Levels shifters and DC-DC converters can be soldered with male pin headers, there is enough clearance for them.
  • Solder the display: ensure to have enough clearance to slide the SD card out of the display above the Pi Pico. Best is either to use female pin headers to secure the distance between display and main PCB or to solder the display with pins just showing out of the back PCB surface (pins are long enough).
  • Trim the remaining pin connectors as short as possible from the back side of PCB.
  • At this step, flash the Pi Pico and verify that the device boots and the display works. It should be stuck to an error screen with the red LED flashing, this is normal as the device needs SD card and a sensor to go further.
  • Before glueing anything to the back side, reflow any trimmed pin carefully.
  • Solder the JST connectors to the Breakout PCB (INPUT and NORMAL OUT if you use a cable similar to the default sensor one linked in Parts) or just bend straight the pins of a female JST connector and plug it into the JST extension cable to inverse its gender.
  • Trim the AA battery holder ON/OFF switch and place it in ON position, solder the battery terminals.
  • Glue the Battery holder behind the pushbuttons (it will act as a hand grip) and the camera shell behind the display. Use double sided tape or dots of hotglue in order to allow reversing the mod and get back your precious camera shell if necessary.
  • Connect the sensor to the extension cable or adapter board (beware of the polarity), place fresh AA batteries and enjoy your Dashboy Camera !
  • If you want to use the time lapse or HDR features, use a tripod and hold the Dashboy with any universal phone holder by the battery holder.

Image of the populated PCB as you will get it (PCB version 2.0, the current one)

Dashboy populated PCB

The GPIO22 pin, only digital pin left free on the Pi Pico, is exposed as well as a GND and 3.3V pins if you want to use them for other purpose like triggering something in/out of the device. It will of course require modifying and compiling the code. It is by default routed as PWM output to drive a servo.

Some random informations for you Game Boy Camera nerd !

  • The sensor has intrinsically many visual artifacts (horizontal and vertical lines, image echoes at certain exposures, etc.). None of them is specifically due to the Raspberry Pi Pico. They were all observed with a real Game Boy Camera in the same lighting conditions.
  • The register C range (exposure, 16 bits) should be limited to [0x0030-0xFFFF] according to Mistubishi, despite the sensor being technically able to cover [0x0001-0xFFFF]. This is advised in the sensor datasheet and the reason is that below 0x0030, the image artifacts becomes so intense (as black vertical bars) that they interfere with any auto-exposure algorithm based on pixel intensity. Technically, this creates exposure jitters and unpleasant behavior. The Game Boy Camera (and the Game Boy Camera mode here) has a range of exposure extended to 0x0010 by cancelling border enhancement but this however comes with a dark halo on the left side of image at very low exposure time (typically full sun in summer). Below 0x0010 and down to 0x001, the image covers less and less surface of the sensor with black pixels instead of data.
  • The strategy used in Game Boy Camera mode and the auto-exposure algorithm have been reverse-engineered from real data logging on a regular Game Boy Camera. Source files can be found in this other repository. Detailed explanations can be found here. As I'm not stuck to 8-bits arithmetics in the Pi Pico, I took some freedom with my version of auto-exposure algorithm but it behaves overall the same. I however contributed to the implementation of auto-exposure algorithm in Photo! by closely mimicking the real algorithm this time.
  • Close up images of the sensor and the MAC-GBD decapped can be found here. The sensor presents masked pixels which always return the reference voltage given by register V (raw voltage tuning) plus the saturation voltage. These pixels occupy the lines 123 to 128 of a 128x128 image and appears as a white (saturated) bar at the bottom. I do not see any way to get usefull information from these pixels (apart from the whole voltage range with current register if sensor is placed in the dark). I do not know if camera makes any use of them.
  • The Game Boy Camera has a calibration procedure to adapt for each sensor. It permanently modifies some sram values but the role of these data is not well documented. It anyway deduces a lookup table for register O (fine voltage tuning) to apply to have consistent images with different sensors at different gains and exposure times. I use here the calibration data of one particular camera I own, but measures between different cameras calibrated show very minor differences.
  • The Game Boy Camera uses registers to target only the upper half voltage range of the MAC-GBD (approx. 1.5-3.0V) as it has very limited post-processing capabilities (mainly handled by the MAC-GBD mapper which returns directly 2-bits dithered images data). The actual dithering matrices used by the camera never code for value below 128 for this reason. The unused low voltage range probably serving as "voltage buffer" for bias (dark current) correction via register O. The DashBoy Camera emulates this feature in Game Boy Camera mode.
  • The role of each registers is quite well understood now and explained here. The Mitsubishi M64282FP datasheet is notorious for being crap so many informations were assessed by extrapolating things from the less sketchy (but also incomplete) datasheet of the M64283FP. Undestanding the M64283FP datasheet still requires educated guess due to poor translation of the original in Japanese which is at least, this time, understandable. This latter contains the exact dimensions of the sensor which is (voluntarily ?) obfuscated on the 82FP datasheet, comprising the focal plane position, that can be used for doing reliable lens modes with the 82FP (same package than the 83FP).

Real dimensions of both the M64282FP and M64283FP from 83FP Japanese datasheet

  • The Game Boy camera rom injects only 5 bytes of registers while sensor itself requires 8 bytes. the 3 missing register bytes (P, M and X) are hard coded into the MAC-GBD and sent to the camera anyway. Their main purpose is to inject custom convolution kernels. They can be bypassed by using other registers offering the most usefull pre-calculated convolution kernels, what the Game Boy Camera does.
  • The mask marking on the M64283FP is A64283 (Mask revision A) while on the M64282FP it is B64282 (Mask revision B). Doing some science fiction, the MAC-GBD has pins with undocumented purpose that could have been used to push extra registers to a prototype A sensor.

Mask marking on the surface of the M64282FP sensor

Mask marking on the surface of the M64283FP sensor

The M64283FP and M64282FP sensors are pinout compatible

M64283FP sensor directly drop on a PCB sensor board (and happy to take image like that)

The register E used by the Game Boy Camera by default disables the edge enhancement of the M64283FP sensor

  • The flash ADC of the MAC-GBD has a voltage full scale of 0<->3.3 Volts. Maximum voltage reached in normal use with a Game Boy Camera is about 3.05 volts. It can go until 3.18 volts during camera boot (may this be intentionnal or not). The ADC embedded in the MAC-GBD is protected from any overvoltage coming from the sensor by a low voltage Schottky Barrier Diode (more precisely a Panasonic MA784 or equivalent, about 0.18V forward voltage at 1 mA) which cathode is connected to the +3.0V of the board and anode connected to VOUT (analog image signal line). In the Dashboy Camera, I did not take this over-precautious measure as VOUT never goes over 3.05V (for the Pi Pico ADC going to 3.3V).
  • The Game Boy Camera has two PCB revisions for its sensors. It is unclear wether it has an effect on images other than subjective or if the board revision is associated with a sensor revision. Veteran users of the camera admit that there is no clear separation between revisions in terms of image quality. The fact is that just cleaning the plastic lens generally cancels the subjective differences. The only solid observation is that early sensors used in Japanese cameras tends to present more vertical streaks artifacts (one vertical line over two is slighly darker).
  • According to an internal Mitsubishi source, the use of the M64282FP artificial retina for road safety dashcam application was assessed in 1999. They recommend using the MAX153 flash ADC to convert analog signal fast enough for a live (5 fps !) rendering and recording of images. The MAC-GBD, mapper of the Game Boy Camera, embeds a flash ADC too on its chip. The probability is thin but not zero that the MAC-GBD flash ADC would be simply a MAX153 adapted for this custom mapper. See the experiment proposed here to see a MAX153 in action.
  • Oh, and the "dancing man" in the Game Boy Camera credits is Kentaro Nishimura, not Shigeru Miyamoto. He's also probably the unknown face in the Debagame Tester: Second Impact (デバガメテスター SECOND IMPACT), same jacket, same glasses, same haircut, same kind of humor. Some more images of him can be found here.

Kentaro Nishimura aka "the dancing man" of Game Boy Camera Game Boy Camera dancing man

My feedback about some Game Boy Camera lens modes I've tried with the GameBoy/Dashboy Camera

  • First, the original plastic lens used in 8-bits mode gives a quite eery image with vignetting. In a word: it is crap. But it also has its own charm. Everything looks "ashy" with it. And the original camera eye ball allows making selfies contrary to lens modes !
  • If you use a lens mod with the DashBoy camera, the lens aperture will define how dirty will look your sensor. The wider the opening, the less artifacts on the image. These speckles, due to dust or sensor acrylic surface roughness or scratches, can barely be seens with a regular Game Boy Camera due to dithering but becomes very obvious in 8 bits mode where the image is much smoother, in particular in timelapse mode. So do not worry, the DashBoy Camera does not wear your sensor, just open your diaphragm (if any) !
  • The crop factor between a full frame sensor and the camera sensor is about 10. This means that even the marvelous 16 mm Zenitar from the photographic film era will act as a boring 160 mm telephoto lens, but on the other hand, a Tair 3S 300 mm lens will becomes a sexy 3000 mm ready for astrophotography. For the same reasons, CCTV lenses will began to act as "wide angle" with the Game Boy Camera below 2.8 mm.
  • Most camera lens modes are based on 3D printed stuff with very rough tolerances, based themselves on schematics found by reverse engineering the actual sensor position in its acrylic enclosure (with its own tolerances too). So there are two typical cases: either the focale plane is behind the surface sensor at infinity, which can be fixed with lens focusing (if any), either the focal plane is ahead at infinity, with means that you can NEVER get a focused image. The reason is that the lens is too far from the sensor. The only way to fix that is to shave the front plane of the 3D parts and make trials BEFORE gluing anything (like a screw mount) on it. Note to tinkerers: better have a sensor a bit too close that a bit too far from the lens. Too close can be easily fixed with washers for example (in addition to focusing of course).
  • This focusing plane "intolerance to tolerances" is particularly obvious with fixed focal wide angle CCTV lenses (like a 1.8 mm). So if a lens mount works with them, it will work with anything else !

Things that were dismissed during dev because any project must be finished one day.

  • Porting back the whole code to ESP32, the Pi Pico version beeing itself ported from the prototype ESP32 version. I've tried, then gave up, too many memory management issues.
  • Direct recording in PNG format with the PNGenc library, instead of BMP. I managed to embed this library into the NeoGB printer, but no matter how I tune the memory management in the DashBoy Camera project, I sometimes ran out of memory despite the fact that I still have "plenty". So I have a version 99% working in the drawers but not 100%... And BMP format just works fine in fact, I very like this encoding format, it's easy to handle.
  • Adding a menuing system with a single joystick was imagined, but it requires basically starting the code from scratch. In the same mood, a full touchscreen interface would be cool and probably easier to code.
  • Making a full SMD device small and pretty (with sensor included on the PCB and a printed shell) to make a tiny digital camera. Too much work knowing that the current design perfectly fills my needs.
  • Adding an USB support with tinyusb to turn the device into a webcam by using the second core. I did not manage to make any Arduino IDE compatible library working with Windows 10 USB camera support and gave up. Maybe in the future if I give another try. Honestly not a priority, I would have no use of this feature.

Some dev notes

  • This device is "8-bit" here on purpose but as the sensor outputs analog pixel data, it can become whatever number of bits the ADC you use to convert the signal is able to spit. With the Pi Pico, the ADC is 12 bits (so I've cut the 4 LSB). It is so theoretically possible to store sensor signal in 12 bits per pixels and perform some kind of post-treatment. It is of course totally pointless seing the intrinsic signal to noise ratio of the sensor.
  • The extra registers used by the M64283FP sensor (allowing hardware cropping and projections) are not implemented here as they were only intended to fasten the post-processing step in the mid 90s. Here the calculation power available is infinite compared to these times. It's anyway intersting to see how they work with a very slow device so you can jump to this project to play with them on Arduino.

Troubleshooting

  • The screen stays white after flashing: error of TFT library linking, follow closely the installation guide with the Bodmer library and flash again;
  • The image colors on screen are inacurrate and the default parameters are lost: json config file corruption, the device runs on internal miminal configuration, copy a fresh config.json from repo to the SD card and reboot;
  • The image looks too dark or too bright on screen despite the auto-exposure working, the image jitters: loose connection with sensor, re-seat the 9 pins connector on both sides.
  • the screen shuts down but the auto-exposure continues to work: empty batteries;
  • the device works but very slowly: SD card corruption after boot sequence, the device struggles to access it so the slowdown.
  • the SD card is not recognized even formatted for sure in FAT32 ? You can use some low level formatting tool like diskpart on Windows to restore the filesystem integrity.

Kind warning

The code and current design come as it. If you're not happy with the current hardware, the PCB EasyEDA design or the Arduino IDE, create your own, the licence allows it ! Push request with tested and working improvements are of course still welcomed.

Acknowledgments

  • Andreas Hahn for the fruitful technical dicussions, the dithering pattern generator the Powershell scripts, the colorscale generator and the M64283FP/82FP-compatible PCB. He provided many ideas, tools, concepts and design feedbacks that leads to this quite polished version, as well as a project for an ultra-small device with a 256x256 pixels display using a ST7789 driver yet included in the code that I hope will one day become a reality.
  • Razole for providing me some M64283FPs "under the counter" in exchange of the #000001 exemplary of the current device. If you read this one day, I've fully implemented the advanced sensor function in this other project.
  • Rafael Zenaro because I stole chunks of code and ideas from the NeoGB Printer project. Coding myself for the NeoGB printer on the crappy ESP32 gave me (nightmares) enough confidence to dare starting this quite convoluted project. Great thanks my friend, whatever you do now !
  • Drago for giving me some M42 lens mount in exchange of a NeoGB printer, allowing me to mount the puny camera sensor on my ENORMOUS Tair-3s 300mm f/4.5 soviet telelens (so the Moon).
  • Michael Shimniok and/or Laurent Saint-Marcel for the Arduino code I started from (initial source here). I'm not 100% sure of who is the initial author so I apologize for any error in citation.

Developpement steps

Dashboy Camera prototype

About

The DashBoy Camera, a 8-bit digital camera made with the Mitsubishi M64282FP sensor of the Game Boy Camera and a Raspberry Pi Pico. Also supports the rare M64283FP sensor. Made for fans by a fan.

Resources

License

Stars

Watchers

Forks

Packages

No packages published