Project: APrinter firmware July 21, 2014 03:03AM |
Registered: 10 years ago Posts: 91 |
Re: Project: APrinter firmware April 17, 2015 03:11PM |
Registered: 10 years ago Posts: 91 |
Re: Project: APrinter firmware April 17, 2015 06:37PM |
Registered: 9 years ago Posts: 977 |
Re: Project: APrinter firmware April 17, 2015 06:54PM |
Registered: 10 years ago Posts: 91 |
$ curl [nixos.org] | sh <-- if it fails trying to create /nix, it will tell you a command to run as root, do it, and run this again $ git clone [github.com] $ cd aprinter $ nix-build nix/ -A aprinterService -o ~/aprinter-service $ mkdir ~/aprinter-service-temp $ ~/aprinter-service/bin/aprinter-service Point your web browser to [127.0.0.1] and enjoy!
Quote
Right now I can test your firmware on Cartesian (a Prusa i3 variant) and on delta (a Rostock variant) printers, both are equipped with Arduino Mega 2560 + RAMPS 1.4 but both can also be equipped with Arduino Due + modified RAMPS 1.4 for Due.
Re: Project: APrinter firmware April 17, 2015 07:14PM |
Registered: 9 years ago Posts: 977 |
Re: Project: APrinter firmware September 29, 2015 08:09AM |
Registered: 10 years ago Posts: 18 |
Re: Project: APrinter firmware September 29, 2015 01:58PM |
Registered: 10 years ago Posts: 91 |
Hi alegiaco,Quote
alegiaco
Hi, If I understand well, the APrinter firmware is modular, so it is not so difficult add a new printer geometry. I ask if it is possible control a robot arm with 4dof or 5 or 6dof with this firmware (4,5 or 6 stepper motors). It works with 32bit boards, so the math with formulas and float numbers is not a problem (I hope!). So, knowing the right formulas of forward and inverse kinematics, is possible to implement the firmware?
Re: Project: APrinter firmware October 27, 2015 06:07PM |
Registered: 10 years ago Posts: 91 |
Re: Project: APrinter firmware October 28, 2015 05:49AM |
Registered: 8 years ago Posts: 72 |
Re: Project: APrinter firmware October 28, 2015 02:16PM |
Registered: 10 years ago Posts: 91 |
Hi! Yes, theoretically that would be possible, if someone writes the driver for it. It should not be too much pain because I made a hardware abstraction layer for the Ethernet port.Quote
toxuin
About the ethernet part: could we theoretically use something like 3$ ENC28J60 for boards that do not have ethernet on board?..
Re: Project: APrinter firmware October 29, 2015 04:05AM |
Registered: 8 years ago Posts: 72 |
Re: Project: APrinter firmware October 29, 2015 04:30PM |
Registered: 10 years ago Posts: 91 |
I never said there was a web interface, just a g-code console over TCP - not yet at least.Quote
toxuin
This sounds like an interesting project! My32-bit electronics is on the way and I do not have the aforementioned ENC28J60. I'll get one I guess and we'll see how it goes.
I believe having a web interface on Due-based electronics for +$3 absolutely kicks ass! I don't think any other firmware has that.
I am not that great with C++ though and seeing how awesomly strict your coding style is I start to think I should not embarrass myself... :-D
Re: Project: APrinter firmware November 15, 2015 05:42PM |
Registered: 10 years ago Posts: 91 |
Re: Project: APrinter firmware November 18, 2015 02:45AM |
Registered: 8 years ago Posts: 72 |
Re: Project: APrinter firmware November 18, 2015 01:23PM |
Registered: 10 years ago Posts: 91 |
Re: Project: APrinter firmware November 21, 2015 06:03PM |
Registered: 8 years ago Posts: 72 |
Re: Project: APrinter firmware November 21, 2015 06:47PM |
Registered: 10 years ago Posts: 91 |
Re: Project: APrinter firmware December 04, 2015 03:54AM |
Registered: 10 years ago Posts: 91 |
Re: Project: APrinter firmware December 04, 2015 05:28AM |
Registered: 10 years ago Posts: 14,682 |
Quote
ambrop7
Hey @toxuin, turns out I was wrong, the original Due does not have Ethernet pins exposed. If you'd like Ethernet, you would have to connect directly to the pins on the chip some way (which is doable, see what I did here with the Teensy), or buy a Due-like board that has the Ethernet pins exposed, e.g. this.
Re: Project: APrinter firmware December 04, 2015 05:33AM |
Registered: 10 years ago Posts: 91 |
Re: Project: APrinter firmware October 24, 2016 11:59AM |
Registered: 8 years ago Posts: 5 |