1
0
mirror of https://github.com/nophead/NopSCADlib.git synced 2025-01-16 13:08:15 +01:00

Add 10x15 micro rocker switches

Spades are not exact but close enough.
This commit is contained in:
François Revol 2024-10-17 02:30:48 +02:00
parent 6deaa5da9c
commit cb57b25b0b

View File

@ -19,6 +19,9 @@
include <spades.scad> include <spades.scad>
micro_spades = [[spade3p5, 7.6, 0, 0, 0],
[spade3p5, 7.6, 0, 5.1, 0]];
small_spades = [[spade4p8, 7.6, 0, 0, 0], small_spades = [[spade4p8, 7.6, 0, 0, 0],
[spade4p8, 7.6, 0, 7.1, 0]]; [spade4p8, 7.6, 0, 7.1, 0]];
@ -26,18 +29,19 @@ neon_spades = [[spade4p8, 7.3, 0, -7, 0],
[spade4p8, 7.3, 0, 7, 0]]; [spade4p8, 7.3, 0, 7, 0]];
// //
// p s s f f f w h d b p b // p s s f f f w h d b p b
// a l l l l l i e e e i u // a l l l l l i e e e i u
// r o o a a a d i p z v t // r o o a a a d i p z v t
// t t t n n n t g t e o t // t t t n n n t g t e o t
// g g g h h h l t o // g g g h h h l t o
// w h e e e t n // w h e e e t n
// //
// w h t // w h t
// //
small_rocker = ["small_rocker", "Rocker Switch PRASA1-16F-BB0BW", 13, 19.25, 15, 21, 2, 12.8, 18.5, 11.8, 2.5, -1, 3.8, small_spades]; micro_rocker = ["micro_rocker", "Rocker Switch 10x15", 8.8, 13.9, 10.5, 15, 1.5, 8.2, 14, 9.3, 2.0, 0.8, 3.0, micro_spades];
neon_indicator = ["neon_indicator", "Neon Indicator H8630FBNAL", 13, 19.25, 15, 21, 2, 12.8, 18.5, 12.5, 2.5, 0, 0.3, neon_spades]; small_rocker = ["small_rocker", "Rocker Switch PRASA1-16F-BB0BW", 13, 19.25, 15, 21, 2, 12.8, 18.5, 11.8, 2.5, -1, 3.8, small_spades];
neon_indicator = ["neon_indicator", "Neon Indicator H8630FBNAL", 13, 19.25, 15, 21, 2, 12.8, 18.5, 12.5, 2.5, 0, 0.3, neon_spades];
rockers = [small_rocker, neon_indicator]; rockers = [micro_rocker, small_rocker, neon_indicator];
use <rocker.scad> use <rocker.scad>