Close

Architecture Options

A project log for Etch sAo Sketch

No explanation needed!

andy-geppertAndy Geppert 09/18/2024 at 14:064 Comments

After a wide survey of options, I think there are two architectures that standout for this project. The first one meets the MUST HAVE requirements and the second one exceeds the NICE TO HAVE requirements with significant benefits and capabilities. I welcome feedback and discussion on this fork in the road!


ARCHITECTURE V1 (OLED with I2C simplicity):

Architecture V1 is the easiest and most direct path to a solution. But it lacks the ePaper, which I think is the magical element that will really make the Etch sAo Sketch pop. OLEDs are nice, but I think people will enjoy ePaper more. This will be my starting point. Maybe using a fully illuminated OLED display, with the drawing point being OFF pixels will sell the look?


ARCHITECTURE V2 (ePaper, I2C-to-SPI bridging, standalone MCU operation, with even more benefits):

Architecture V2 is going to be my extra credit project.


Can I complete both by October 15?

Discussions

Aaron wrote 09/22/2024 at 17:22 point

My SAO is rapidly becoming a badge in its own right. I have a drawing API written, a method for writing data to memory, and a preferences setting methodology. Even a factory reset is on the docket. While I'm not providing direct access to the display from the host badge, it's close enough for a given user to accomplish what they want. 

I'm a software guy more than a hardware guy. If it were me, I'd just bridge the i2c to SPI through software on the MCU. Might not be your proverbial cup of tea though.

Have you considered doing the knobs with encoders?

I'm excited to see where you take this project. It's really cool!

  Are you sure? yes | no

Andy Geppert wrote 09/23/2024 at 01:35 point

Awesome - I would like to follow your lead on that level of API bridging. I'm going to knock out the OLED version first, so that'll be all I2C. Then I'll try to squeeze in the ePaper version with the software bridge you suggest - at least get a prototype running before Supercon.

I did consider encoders, but I'm going to try "cheap" analog pots first, for the sake of analog signal and analog feel. I think having analog inputs on the GPIO1&2 of the SAO will be a fun twist for folks. In the ePaper version with ESP32, I'll optionally route the analog pots to the ESP32 as well, and maybe provision to try some encoders too.

But I gotta focus on that OLED version first. After the Core4, the Demo Controller, and a Nunchuck SAO... go go go!

I like your trick to solder the screen behind the board without thru-holes on the front!

  Are you sure? yes | no

Tom Nardi wrote 09/18/2024 at 23:34 point

I will say this...it seems that the focus on SAOs this year (and the contest) are helping to shine a light on some of the technical issues that have thus far kept SAOs simplistic. For example, now we're talking about SAOs that have to have their own internal I2C buses for their own hardware, while still communicating with the main badge over I2C. Like you said, at what point does an SAO become complicated enough to be considered badge?

As an example, I figured it would be easy to just do another spin of my cyberdeck SAO, but this time run the I2C lines to the header. But wait...the MCU on the SAO is communicating with the OLED on those lines, so what's going to happen when other devices tap in and potentially want to start talking? In that case, it would make more sense to just do a cyberdeck version without the onboard MCU, allow the badge to drive the screen and LEDs directly. But then the SAO becomes useless on any other badge...

For the record, I don't think this is a bad thing necessarily. We need to know where these pain points are. But it's all a bit trickier than we initially imagined it would be.

  Are you sure? yes | no

Andy Geppert wrote 09/23/2024 at 01:36 point

I agree with your sentiments. I'm planning to address the particular challenge of demoing otherwise MCU-less SAOs with an SAO DEMO CONTROLLER. I plan to bring the SAO Core4 which doesn't have an MCU and needs a brain to work. So the SAO DEMO CONTROLLER is a simple "SAO plug + RP20240 Zero + SAO socket" that drives the Core4. This makes it easy to show people what SAO Core4 does and gives them the option to wear it around to demo as is, or make their own interface. https://hackaday.io/project/198034-sao-demo-controller

  Are you sure? yes | no