We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The 0 - 100% plot complete percentage (progress indicator) is too fast.
The EBB only has a FIFO queue of 3, so it's not there. From cncserver documentation of PUT /v1/pen:
cncserver
PUT /v1/pen
Request will not complete until movement is actually complete, though you can send more requests through separate channels.
The below code is likely the culprit. https://github.com/lilkraftwerk/lineboi3000/blob/master/src/plotting/AxidrawAPI.js#L73-L81
At a minimum, I think it should be await result.json() rather than Promise.resolve(json). It might also need error handling?
await result.json()
Promise.resolve(json)
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The 0 - 100% plot complete percentage (progress indicator) is too fast.
The EBB only has a FIFO queue of 3, so it's not there.
From
cncserver
documentation ofPUT /v1/pen
:The below code is likely the culprit.
https://github.com/lilkraftwerk/lineboi3000/blob/master/src/plotting/AxidrawAPI.js#L73-L81
At a minimum, I think it should be
await result.json()
rather thanPromise.resolve(json)
. It might also need error handling?The text was updated successfully, but these errors were encountered: