Jeff Eberl
Jeff Eberl
Interesting. IDK. I am really just installing cncjs on the image, I don't know about that level of configuration.
I install it using npm here: https://github.com/jeffeb3/v1pi/blob/master/src/modules/cncjs/start_chroot_script#L24 If you just want to edit your own version of CNC.js, then it probably makes sense to install it locally, in the /home/pi...
Yes. There are two parts to the problem. 1) installing the LCD, installing the x server, and Configuring the pi to show it's display there. 2) Installing the pendant code,...
npm installed it in `/usr/local/lib/node_modules/cncjs` If you want to add the -m option to add the pendant module, the startup command is in `/etc/default/cncjs`
The default content in the /etc/default file is from here: https://github.com/jeffeb3/v1pi/blob/master/src/modules/cncjs/filesystem/root/etc/default/cncjs And the command that installed cnc.js is here: https://github.com/jeffeb3/v1pi/blob/master/src/modules/cncjs/start_chroot_script#L24 If it works for you, I wouldn't mind trying it...
You can add the -m to DAEMON_ARGS. It should be port 5080 when that comes up.
Bummer. I've been spoiled since it's been so reliable. It's running from systemd. To see the logs you can use journalctl `journalctl -u cncjs.SERVICE` Add a '-b' to only show...
1) It is case sensitive, and I'm not sure why I suggested SERVICE in the first place. I blame my phone, sorry. It should be: `journalctl -u cncjs.service` 2) You...
Do you have any ideas why it might be working harder or be different on your pi?
I have it on a few pi versions, including a zero. There were two CNC.js bugs related to Marlin in 0.9.20. I would suggest either trying the pre-release I just...