GSM’s Subscriber Identity Module
Resources
OpenSCAD file for a Nano to standard SIM adapter:
// Nano to Standard SIM adapter.
// Project: https://hackaday.io/project/164135
// Render, export as STL
// Slice with 0.1mm first layer, and 0.1mm layers.
nano_to_standard_sim();
extra = 0.01;
module nano_to_standard_sim() {
difference() {
translate([0,0,.8/2]) cube([15,25,0.8],center=true);
translate([15/2,25/2,0.8/2]) rotate([0,0,45]) cube([4.4,4.4,0.8+extra],center=true);
translate([-1.75,-3.75,0.8-0.70/2]) difference() {
cube([9,12.5,0.75+extra],center=true);
translate([9/2,12.5/2,0]) rotate([0,0,45]) cube([2.4,2.4,0.75+extra*3],center=true);
}
translate([-1.75,-3.75,0.8/2]) cube([7,10.5,0.85+extra],center=true);
}
}