I where curious how to make your own Pogo Pin adapter and fund the following recipe:
The OpenSCAD model for milling or 3D-printing:
Code:
$fn = 128;
module Plate(){
difference(){
square([7, 8.2]);
for(i = [1.5 : 5.1 : 6.6]){
for(j = [1.6 : 1.27 : 6]){
translate([j, i]) circle(d=1);
}
}
}
}
//linear_extrude(5) // Comment this line out for flat milling sketch
Plate();
After that I got some P75-B1 pins with 1.02 x 16.3mm I grabed a flat-cable like this one (
https://www.ebay.com/itm/2Pcs-2-54mm-Pi ... 2240437307) which I found in my box of various cables.
I cut the cable, separatied the wires, stripped the ends and soldered them streight to the pins. After that I isolated each one with just one wrap of electrical tape. First i tryed shrink-wrap but that was to thick... Then I inserted them into the small plate which I milled out of 5mm thick PVC and secured the pins and cables with the hot glue gun...
PS.: I got today my Revelprog IS and it work great! Thanks for your helpful tipps again - especially to you
fzabkar!