Push Buttons
If you have one or more tactile switches on your PCB you can make a knop guide with witch you can push the tactile switch. You can size the button in any dimension you like and you can control the height of the button above the Lid (all within limits).

//-- pushButtons -- origin is pcb[0,0,0]
// (0) = posx
// (1) = posy
// (2) = capLength
// (3) = capWidth
// (4) = capAboveLid
// (5) = switchHeight
// (6) = switchTrafel
// (7) = poleDiameter
// (8) = buttonType {yappCircle|yappRectangle}
pushButtons = [
//-- 0, 1, 2, 3, 4, 5, 6, 7, 8
[15, 30, 8, 8, 0, 2, 1, 3.5, yappCircle]
[15, 10, 8, 5, 2, 4, 1, 3.5, yappRectangle]
];


The three buttons are created with this code:
pushButtons = [
//-- 0, 1, 2, 3, 4, 5, 6, 7, 8
[84.2, 91.7, 8, 8, 0, 2, 1, 3.5, yappCircle]
, [85, 13.5, 8, 5, 3, 2, 1, 3.5, yappRectangle]
, [85, 7, 8, 5, 3, 2, 1, 3.5, yappRectangle]
];

Last modified 4mo ago