Coder Social home page Coder Social logo

Line number in program about pygcode HOT 4 CLOSED

fragmuffin avatar fragmuffin commented on June 9, 2024
Line number in program

from pygcode.

Comments (4)

fragmuffin avatar fragmuffin commented on June 9, 2024

@TurBoss thanks for the issue!

My CAM software doesn't generate line numbers, so I hadn't picked this problem up yet.

Workaround

define the following class (anywhere)

import pygcode    

class GCodeLineNumber(pygcode.gcodes.GCode):
    @classmethod
    def word_matches(cls, w):
        return w.letter == 'N'
    word_letter = 'N'
    word_value_configurable = True
    exec_order = 0

but before that works, you'll have to modify a line in gcode.py from:

if (not exhaustive) and (word.letter not in 'GMFST'):

to

if (not exhaustive) and (word.letter not in 'GMFSTN'):

If you're interested

The issue is that the parser pulls all words (<letter><number>) out of the gcode string, then attempts to bind them as parameters to the closest valid gcode to the left of it.
Anything that remains (in your case, N10) is considered to be a parameter to a modal motion gcode (eg: G0)...
So what this is saying is that G0 N10 isn't a valid code, which it isn't... but that's because I haven't assigned N codes to be their own dummy gcode.

I'll be releasing v0.1.3 very soon to fix this, and some other issues.

from pygcode.

fragmuffin avatar fragmuffin commented on June 9, 2024

correction: make that v 0.2.0, I'll move this lib to alpha

from pygcode.

fragmuffin avatar fragmuffin commented on June 9, 2024

ok, new version is out... let me know if you have any more troubles.

from pygcode.

TurBoss avatar TurBoss commented on June 9, 2024

from pygcode.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.