Closed smunaut closed 1 week ago
How about this?
Any changes (especially to the terms) or does it look good?
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);
};
Yes, that looks right to me
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.