Skip to content

Latest commit

 

History

History
194 lines (169 loc) · 13.3 KB

README.md

File metadata and controls

194 lines (169 loc) · 13.3 KB

$100 Optical Computer

Everything related to the CERN MicroClub webfest 2024 project to build an Optical Computer and use it to simulate a quantum computer. We haven't finished yet...

WhatsApp Image 2024-07-30 at 14 07 11

Task 1: Wire everything together.

We're using the pinouts from here:

We need to wire up both screens to the Pi using some jumpers:
Here are the relevant pins:

2.4" screen:

PIN NO. SYMBOL DESCRIPTION
1, 17 3.3V Power positive (3.3V power input)
2, 4 5V Power positive (5V power input)
3, 5, 7, 8, 10, 22 NC Not connected
6, 9, 14, 20, 25 GND Ground
15 LCD_RS LCD instruction control, Instruction/Data Register selection
19 LCD_SI / TP_SI SPI data input of LCD/Touch Panel
21 TP_SO SPI data output of Touch Panel
23 LCD_SCK / TP_SCK SPI clock of LCD/Touch Panel
24 LCD_CS LCD chip selection, low active

3.5" screen

PIN NO. SYMBOL DESCRIPTION
18 LCD_RS Instruction/Data Register selection
19 LCD_SI / TP_SI SPI data input of LCD/Touch Panel
21 TP_SO SPI data output of Touch Panel
22 RST Reset
23 LCD_SCK / TP_SCK SPI clock of LCD/Touch Panel
24 LCD_CS LCD chip selection, low active

The Raspberry Pi 4 Model B official GPIO pinouts are here: https://datasheets.raspberrypi.com/rpi4/raspberry-pi-4-datasheet.pdf

And some advice on wiring up ouyr WS2812Bs from here: https://core-electronics.com.au/guides/fully-addressable-rgb-raspberry-pi/

In summary:

PIN RP PERIPHERAL
1 NC
2 SPI Screen 1
3 NC
4 SPI Screen 2 + LED power (unless we can find this elsewhere)
5 NC
6 SPI Screen 1 GND
7 NC
8 NC
9 SPI Screen 2 GND
10 NC
11 NC
12 LED Data
13 NC
14 LED GND
15 LCD_RS (common or one per screen?)
16 NC
17 NC
18 LCD_RS (if using 3.5" screens..)
19 LCD_SI (Screen 1)
20 NC
21 NC (we don't need the touch panels)
22 RST (Screen 1)
23 LCD_SCK (Screen 1 clock)
24 LCD_CS (Screen 1 chip select)
25 NC
26 NC
28 NC
29 NC
30 NC
31 NC
32 NC
33 NC
34 NC
35 NC
36 LCD_CS (Screen 2 chip select)
37 NC
38 LCD_SI (Screen 2)
39 NC
40 LCD_SCK (Screen 2 clock)

Here is someone doing something very similar to what we are doing: https://forums.raspberrypi.com/viewtopic.php?t=325328

Some notes on progress so far and things we need to do: We've stripped the screens and put them in the box, the 100x20 (5x20x20) aluminium and the L brackets work very well as a cheap optical table. The camera field of view is good, needs focusing. The power supply for the LEDs isn't adequate - it is causing the Pi to brown-out. A separate 5V connection is needed, I'll see if I can find something suitable. The camera needs a longer cable, it came out today (1/8) and gave a very odd/wonky video feed when trying to view the camera. We'll need to sort that out somehow. I also read some disturbing reports on the quality of the 8x8 rgb led arrays I've been buying, which isn't surprising as a good one costs £25 and these cost about £1. We should do some more testing, it's probably worth fixing up both and choosing the least wonky.

The first image from the camera looked like this, it's pretty close but the focus needs adjusting. test

As a reminder, today we also had some fun with the polarizer, with the LCDs unpowered (i.e. 100% opaque.. as much as they go), if we turned on the RGB leds we basically couldn't see them with the camera. However putting a polarizer between the two made it much more tranmissive. This is an interesting quantum effect, and probably something to do with the fact that one screen is facing forward, and the other backwards. We should look at this in more detail when we have things together.

Raspberry Pi Connect is working, just about. The mouse is very slow. But the graphics work (except the camera when the cable was wonky).

REMINDER: Modify the boot.txt to turn off the LED on the pi on the board. Probably something like this: https://forum.magicmirror.builders/topic/17038/how-to-turn-off-raspberry-pi-leds/4 .

Status and to do (6pm 8th August): Status: The box is working. We have 64 visible leds, addressable and controllable. 2 LCD planes, though one is a little out of alignment, but not a huge deal I think - can fix this with some more hot glue tomorrow. We have some internal reflections, but with cropping should be able to exclude this. Ultimately. WE HAVE A WORKING OPTICAL COMPUTER! We just need to understand the inputs and outputs logically, rather than just as something pretty. Screenshot 2024-08-08 at 14 24 51

To do: We're talking with Mael tomorrow, he will have some ideas about quantum stuff we can do. Until then we need to figure out calibration, and the basic level of our software/routines. 0) Karthik please document your mods to the boot overlay, I know it's just one line, but it's a very important line!

  1. we need a python function/script/whatever that will take a picture (ideally max resolution from the sensor), then crop it to the area we care about, and rotate it 180, as it's upside down. It should also include manual exposure control. This is one job. 1.1) transform the captured image back into a nice matrix, which we can scale (i.e. if we are working with 1 virtual pixel that is the whole array, or 64 etc.) - and ideally the pixel mappings are fixed and quantised to work with the actual physical pixels we have somehow! Also a job.
  2. We need to start calibration, for this we should be able to address the LEDs and the LCD pixels individually, so we should have a wrapper for this; we're not far off it with the libraries we are already using. As discussed already, calibration 1 is 50% brightness LED, 50% on screen 1, and 50% on screen 2. Then measure the output using the script for 1. This is the biggest part, and most intellectually demanding I think. We need to have a variable in there somewhere (LED light input probably, close to 250, unless we can do a miracle with the exposure in 1. ) We'll also need to try by experiment what levels of granularity we can distinguish. Ideally this process can be automated to run in a batch and give a summary result (i.e. I tested all 255 input levels for a single pixel, and actually we only see 200 different outputs with the screens transparent, etc. and then with the first screen set to 1..2..100% obscurity etc.)
  3. Install jupyter and set it up as sudo, so we can just use a workbook instead of a mash up of terminal and screen sharing. Probably not a priority as we're behind the CERN firewall so can't open a port (I can do this at home.. ) and on the Saturday you'll want the device there, not in my house! Another option would be to make it a local self-contained wifi server, with jupyter running. but this will slow development, as you'll only be able to connect to the device and not the internet. Suggest we park this for now.
  4. Multiplication. Write something that builds on top of the calibration to allow ABC=D multiplications.. for up to 64 pixels (initially.. we might be able to split the pixels, but let's not bother with that now).
  5. Quantumness. Something that builds on our multiplication to simulate a qubit, or a qutrit. We should set a 'state' i.e. analog variable for the energy of our quantum system in R and G (or R and B etc.. any two colours for starters). And then we can operate on that to reduce the energy by setting values in the LCD matrix; this isn't any different to multiplication - yet; but perhaps we can simulate quantum gates in software; or a way of connecting the pixels together and iterating. I don't know yet!
  6. Anything else you guys can think of!
  7. Update this repo, tidy it up, include the latest pinout that we are actually using, etc. and make it pretty. We also need to do the Buidl thing for Dora Hacks, if anyone is super keen on understanding how they work, go ahead!