Add pokedex model to dimension comparison
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 22 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 44 KiB |
@@ -1,18 +0,0 @@
|
|||||||
module main_display(){
|
|
||||||
// Outer dimensions (incl. PCB), height currently unknown
|
|
||||||
cube([55.04, 89.3, 10]);
|
|
||||||
}
|
|
||||||
|
|
||||||
module pad(){
|
|
||||||
// A button has 4.2 x 6 mm -> At least ~20x20 are required for the PCB
|
|
||||||
cube([20, 20, 10]);
|
|
||||||
}
|
|
||||||
|
|
||||||
module small_display_below_main()
|
|
||||||
{
|
|
||||||
// Outer dimensions (incl. PCB)
|
|
||||||
// https://de.aliexpress.com/item/1005005473564682.html#nav-specification
|
|
||||||
cube([43.5, 19.44, 4.5]);
|
|
||||||
}
|
|
||||||
|
|
||||||
#small_display_below_main();
|
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
module main_display(){
|
||||||
|
// Outer dimensions, height currently anknown
|
||||||
|
cube([55.04, 89.3, 10]);
|
||||||
|
}
|
||||||
|
|
||||||
|
module pad(){
|
||||||
|
// A button has 4.2 x 6 mm -> At least ~20x20 are required for the PCB
|
||||||
|
cube([20, 20, 10]);
|
||||||
|
}
|
||||||
|
|
||||||
|
module small_display_below_main()
|
||||||
|
{
|
||||||
|
// https://de.aliexpress.com/item/1005005473564682.html#nav-specification
|
||||||
|
cube([43.5, 19.44, 4.5]);
|
||||||
|
|
||||||
|
// initial dimension ideas
|
||||||
|
// cube([38,16,4]);
|
||||||
|
// translate([150,0,0]) cube([22,5.5,4]);
|
||||||
|
}
|
||||||
|
|
||||||
|
translate([0,0,7]) import("pokedex-full-assembly-v3-3mf.3mf");
|
||||||
|
|
||||||
|
#translate([-100, -100, 0]) {
|
||||||
|
translate([40, -13, 0]) pad();
|
||||||
|
translate([0,20,0]) main_display();
|
||||||
|
translate([-5,-13,0]) small_display_below_main();
|
||||||
|
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user