Designing a new controller board to run RepRapFirmware: feedback wanted! June 24, 2015 08:16AM |
Registered: 9 years ago Posts: 14,664 |
Re: Designing a new controller board to run RepRapFirmware: feedback wanted! June 24, 2015 09:39AM |
Registered: 9 years ago Posts: 2,472 |
Re: Designing a new controller board to run RepRapFirmware: feedback wanted! June 24, 2015 10:22AM |
Registered: 9 years ago Posts: 14,664 |
Re: Designing a new controller board to run RepRapFirmware: feedback wanted! June 24, 2015 12:23PM |
Registered: 9 years ago Posts: 1,699 |
Re: Designing a new controller board to run RepRapFirmware: feedback wanted! June 24, 2015 02:51PM |
Registered: 9 years ago Posts: 14,664 |
Quote
Treito
Hello,
what I am really missing is a way of updating the firmware via Ethernet (but that should be automatically included). WiFi is a good idea but you may consider also a LAN option. There are people out there who avoid WLAN for many reason, for example security reasons or even healthy reason. The Duet board is hard to get outside the UK. You can get it only at UK (shipping costs are luckily moderate) or at China like I ordered now. Ordering from China seems to be cheap at the first look but you have a very long shipping time and I do not know how much the customs will be exactly. So for me some kind of a high financial risk, but the shop offered also some other things I would like to try.
But the idea is really good. Believe me or not short time before your post I was thinking about using a Raspberry PI B2 or similiar as controller board. The advantege is that you can get it everywhere but it has no stepper motor drivers for example.
Some kind of a lighting output would be indeed nice that can be controlled by the controller for example that would be shut down during homing.
Second idea: The newer heatbed boards has an 24V option to heat faster and higher. As I watch my actual heatbed I always register that at some degrees it is turned on and off quickly so if you change the power supply to 24V. I am afraid that the regulation could be over-swing so a switching between 12V and 24V could be nice but this would indeed cost something. Maybe this is something that could be solved in the firmware so that you can use 24V only, but you should have an option to heat the bed with 24V.
Regards,
Sven
Re: Designing a new controller board to run RepRapFirmware: feedback wanted! June 24, 2015 03:44PM |
Registered: 9 years ago Posts: 1,699 |
Re: Designing a new controller board to run RepRapFirmware: feedback wanted! June 24, 2015 04:38PM |
Registered: 8 years ago Posts: 34 |
Re: Designing a new controller board to run RepRapFirmware: feedback wanted! June 24, 2015 06:50PM |
Registered: 9 years ago Posts: 299 |
Re: Designing a new controller board to run RepRapFirmware: feedback wanted! June 25, 2015 07:11AM |
Registered: 9 years ago Posts: 1,699 |
Re: Designing a new controller board to run RepRapFirmware: feedback wanted! June 25, 2015 08:04AM |
Registered: 9 years ago Posts: 665 |
Re: Designing a new controller board to run RepRapFirmware: feedback wanted! June 25, 2015 08:44AM |
Registered: 9 years ago Posts: 2,472 |
Re: Designing a new controller board to run RepRapFirmware: feedback wanted! June 25, 2015 05:20PM |
Registered: 9 years ago Posts: 299 |
Re: Designing a new controller board to run RepRapFirmware: feedback wanted! June 26, 2015 01:00AM |
Registered: 9 years ago Posts: 1,699 |
Re: Designing a new controller board to run RepRapFirmware: feedback wanted! June 26, 2015 06:14AM |
Registered: 9 years ago Posts: 14,664 |
Re: Designing a new controller board to run RepRapFirmware: feedback wanted! June 26, 2015 08:03AM |
Registered: 9 years ago Posts: 2,472 |
I often drive beepers from a single GPIO output - if it has enough drive to power an LED it can drive a small speaker/beeper. It is loud enough driven with 5V or 3.3V single-ended at its resonant frequency, and does not need to be double-ended or fancy PWM (though you can of course double the peak-to-peak drive voltage by using two outputs). The inductance of a moving coil or diaphragm type beeper is small enough that a protection diode should not be necessary, but inclusion of a diode would increase the cost by less than 1p so I usually stick one on anyway. As far as driving it is concerned, for AC beepers I usually do that in software by spawning a small routine that toggles the output at a suitable rate for the duration called for - usually by hooking an existing timer interrupt and toggling every N timer cycles unless I have a spare timer to dedicate to the beeper. I figure that the beeper will only be needed to sound when the print is stopped, so CPU cycle overheads are not a consideration at that stage even if they are at all significant (which they should not be as the routine will add only 5 or 6 instruction cycles every timer interrupt for the duration of the beep). But if that is not possible, then just a logic output to drive a DC beeper would be OK.Quote
dc42
... the beeper really needs to be driven by a pair of complementary PWM output pins as I do on PanelDue, and there may be no PWM channels left to drive it ...
Re: Designing a new controller board to run RepRapFirmware: feedback wanted! June 26, 2015 08:12AM |
Registered: 9 years ago Posts: 299 |
Quote
dc42
Regarding the use of screw terminals i.e. barrier strip, I have looked into this, and unfortunately even using them just for the power input and bed output would take up nearly double the space and increase the build cost by £1. If this were intended as an expensive high end board then I would do it, but as I am trying to keep the BOM cost lower than the Duet, it isn't really an option - unless someone can point me to a 20A or greater 4-way barrier strip costing well under £1 in qty 100+.
Re: Designing a new controller board to run RepRapFirmware: feedback wanted! June 26, 2015 09:44AM |
Registered: 9 years ago Posts: 14,664 |
Re: Designing a new controller board to run RepRapFirmware: feedback wanted! June 26, 2015 10:22AM |
Registered: 9 years ago Posts: 2,472 |
Re: Designing a new controller board to run RepRapFirmware: feedback wanted! June 26, 2015 11:12AM |
Registered: 9 years ago Posts: 299 |
Re: Designing a new controller board to run RepRapFirmware: feedback wanted! June 26, 2015 12:30PM |
Registered: 9 years ago Posts: 14,664 |
Re: Designing a new controller board to run RepRapFirmware: feedback wanted! June 26, 2015 01:00PM |
Registered: 9 years ago Posts: 299 |
Quote
dc42
I found a barrier strip that may do the job and costs a bit less: [www.digikey.co.uk].
I am still planning to use screw terminals for the hot end connections, and Molex KK for everything else. I guess another possibility is to use doubled-up Molex KK for the hot end heaters, as the Duet does. But I like having the 12V connections different from the rest, to make is less easy to mix them up.
Re: Designing a new controller board to run RepRapFirmware: feedback wanted! July 03, 2015 05:53AM |
Registered: 8 years ago Posts: 51 |