DIY CNC Tool Setter ±0.02 mm (Werkzeuglängensensor)

Sdílet
Vložit
  • čas přidán 8. 09. 2024
  • Simple and precise DIY tool setter for a hobby CNC milling machine.
    Copy paste following code to maker.js playground to create the sketch.
    -----
    var m = require('makerjs');
    var $ = m.$;
    this.units = 'mm';
    var diameter = 36;
    var switchCenterOffset = 3;
    var sideWidth = 2.5;
    var rodDiameter = 8.1;
    $(new ToolSetter(diameter, rodDiameter, sideWidth))
    .addTo(this, 'bottom')
    .clone()
    .moveRelative([diameter + 8, 0])
    .addTo(this, 'top');
    $(new m.models.Rectangle(6.5, 20))
    .center()
    .moveRelative([0, switchCenterOffset])
    .addTo(this, 'switchTop');
    $(new m.models.Rectangle(3.4, 19))
    .center()
    .moveRelative([0, switchCenterOffset])
    .addTo(this, 'switchBottom');
    function ToolSetter(diameter, rodDiameter, sideWidth) {
    this.paths = {
    outside: new m.paths.Circle([0, 0], diameter / 2),
    inside: new m.paths.Circle([0, 0], diameter / 2 - sideWidth),
    rod: new m.paths.Circle([0, 0], rodDiameter / 2)
    };
    }
    -----

Komentáře • 14

  • @thanhnhanhuynhnguyen3652
    @thanhnhanhuynhnguyen3652 Před 8 měsíci +2

    0.02 is plenty good for wood. Nice idea

  • @RenatoYamamoto481
    @RenatoYamamoto481 Před měsícem

    coool

  • @JarppaGuru
    @JarppaGuru Před rokem +1

    9:13 oh yes bit angled push

  • @cyberlizardcouk
    @cyberlizardcouk Před rokem

    very pretty.

  • @graveurgraveur2691
    @graveurgraveur2691 Před rokem

    Bravo!

  • @JarppaGuru
    @JarppaGuru Před rokem

    9:01 you can actually use just aluminium to replace that thing machine will stop when it hit it. more acurate than lever. and you know exact distance bcoz u know thickness of aluminium plate can you even measure that when it trigger lol

    • @CasualCNC
      @CasualCNC  Před rokem +1

      Sure aluminium plate is more precise. But: NO vs NC - bad things happen if you forget to ground the cutter when using aluminium plate.

  • @MrJohnakel
    @MrJohnakel Před 8 měsíci

    why??? just stik that cable to a coin. push switches are not accurate enough in some cases. plus it eats up a lot oh z height.

    • @CasualCNC
      @CasualCNC  Před 8 měsíci

      1. Bit is not grounded on my router and I would have to connect cable to it every time. Forgetting to connect would result in damage.
      2. NC is safer that NO for the same reason.
      3. 0.02 mm is more than enough for my use cases and on my DIY CNC. Accuracy is also surprisingly constant.

    • @MrJohnakel
      @MrJohnakel Před 8 měsíci

      @@CasualCNC thanks for explaination.

  • @JarppaGuru
    @JarppaGuru Před rokem

    +-0.02 is not acurate. daily base doing part 0.013 +-0.0065 lol

    • @herberthenri
      @herberthenri Před 3 měsíci

      For wood? It's pretty damn good acctually.