TinyTapeout / tinytapeout_www

Tiny Tapeout Website
https://tinytapeout.com
6 stars 23 forks source link

Show Analog project pinout using A0-5 B0-5 notation #119

Closed smunaut closed 1 week ago

smunaut commented 1 week ago

Ideally both the raw index (as is now) and the A0-5 / B0-5 notation would be shows. Former is useful when tracing the actual track in the SPEF to see parasitics for instance. The latter is what most people will use to wire stuff up.

urish commented 1 week ago

How about this?

image

Any changes (especially to the terms) or does it look good?

urish commented 1 week ago

Also, double checking that I got the logic right, does this look ok?:

  const breakoutPin = (analog: number) => {
    return analog < 6 ? 'A' + analog : 'B' + (analog - 6);
  };
smunaut commented 1 week ago

Yes, that looks right to me