A Teensy -> Python Interface Manualmatic MPG/pendant
- tommylight
- Away
- Moderator
Less
More
- Posts: 19188
- Thank you received: 6432
13 May 2022 22:31 #242915
by tommylight
Replied by tommylight on topic A Teensy -> Python Interface Manualmatic MPG/pendant
Tittle has changed, what should the title of this topic be?
Do not change the tittle when replying as that makes it impossible to be found when searched for by other users.
Thank you.
Do not change the tittle when replying as that makes it impossible to be found when searched for by other users.
Thank you.
The following user(s) said Thank You: fletch
Please Log in or Create an account to join the conversation.
14 May 2022 12:41 #242948
by fletch
Replied by fletch on topic A Teensy -> Python Interface Manualmatic MPG/pendant
Ah - my apologies, I thought it would give a quick notification of the reason why I was replying to the thread.
"A Teensy -> Python Interface Manualmatic MPG/pendant" seems appropriate - is it possible/appropriate for admin to do a global update?
"A Teensy -> Python Interface Manualmatic MPG/pendant" seems appropriate - is it possible/appropriate for admin to do a global update?
The following user(s) said Thank You: tommylight
Please Log in or Create an account to join the conversation.
- tommylight
- Away
- Moderator
Less
More
- Posts: 19188
- Thank you received: 6432
14 May 2022 17:43 #242965
by tommylight
Replied by tommylight on topic A Teensy -> Python Interface Manualmatic MPG/pendant
Done.
Thank you.
Thank you.
The following user(s) said Thank You: fletch
Please Log in or Create an account to join the conversation.
- alberto.tyra
- Offline
- New Member
Less
More
- Posts: 1
- Thank you received: 1
09 Jun 2022 02:04 #244790
by alberto.tyra
Replied by alberto.tyra on topic A Teensy -> Python Interface Manualmatic MPG/pendant
excelente aporte compañero Felicidades
The following user(s) said Thank You: fletch
Please Log in or Create an account to join the conversation.
09 Jun 2022 13:55 #244805
by fletch
Replied by fletch on topic A Teensy -> Python Interface Manualmatic MPG/pendant
Muchísimas gracias. ¿Estás planeando construir uno?
Please Log in or Create an account to join the conversation.
- smc.collins
- Offline
- Platinum Member
Less
More
- Posts: 676
- Thank you received: 117
02 Jul 2022 20:45 #246467
by smc.collins
Replied by smc.collins on topic A Teensy -> Python Interface Manualmatic MPG/pendant
I would be interested in casting these cases for this pendant design, in fiber reinforced epoxy resin, stuff is strong like bull, could make buttons in silicone rubber etc, are the CAD files around ?
Please Log in or Create an account to join the conversation.
03 Jul 2022 12:06 - 03 Jul 2022 12:11 #246503
by fletch
Hi Sean - I like the idea but the case is specifically designed for 3D printing so would require significant modification for casting (drafting, skrinkage, tolerances etc). I'm not planning to release the current CAD files as they're extremely 'fragile' - as in they're created using a weekly release of FreeCAD from a while back and don't render/play nicely in other versions. STLs are available here: github.com/Stutchbury/Manualmatic-Pendan...n/Hardware/case/v1.1
My focus (which, for reasons, has slipped a little lately) is currently on the software side - primarily to make it easier to add functionality. If you know how to code compile time 'plugins' in C++ advice would be appreciated.
For what it's worth my case, printed in PETG, has been well and truly abused (eg stepped on, dropped and generally mistreated) - it appears to be tough in all the right places. There are different filaments ([carbon] fibre reinforced) that would probably make it even more robust.
Replied by fletch on topic A Teensy -> Python Interface Manualmatic MPG/pendant
I would be interested in casting these cases for this pendant design, in fiber reinforced epoxy resin, stuff is strong like bull, could make buttons in silicone rubber etc, are the CAD files around ?
Hi Sean - I like the idea but the case is specifically designed for 3D printing so would require significant modification for casting (drafting, skrinkage, tolerances etc). I'm not planning to release the current CAD files as they're extremely 'fragile' - as in they're created using a weekly release of FreeCAD from a while back and don't render/play nicely in other versions. STLs are available here: github.com/Stutchbury/Manualmatic-Pendan...n/Hardware/case/v1.1
My focus (which, for reasons, has slipped a little lately) is currently on the software side - primarily to make it easier to add functionality. If you know how to code compile time 'plugins' in C++ advice would be appreciated.
For what it's worth my case, printed in PETG, has been well and truly abused (eg stepped on, dropped and generally mistreated) - it appears to be tough in all the right places. There are different filaments ([carbon] fibre reinforced) that would probably make it even more robust.
Last edit: 03 Jul 2022 12:11 by fletch. Reason: Add link to STLs, just in case.
The following user(s) said Thank You: mehdidadash
Please Log in or Create an account to join the conversation.
25 Feb 2023 12:58 - 26 Feb 2023 13:39 #265324
by fletch
Replied by fletch on topic A Teensy -> Python Interface Manualmatic MPG/pendant
As I had to delve into the python code this week (should now work with v2.9 and v2.10 - thanks TadyTheFish for reporting it and @andypugh for pointing me in the right direction) I thought I'd post a quick video demonstrating the 'manual' bit of the Manualmatic - a facing operation:
www.youtube.com/shorts/LUMRR05cWKM
www.youtube.com/shorts/LUMRR05cWKM
Last edit: 26 Feb 2023 13:39 by fletch. Reason: Re-uploaded with better sound
Please Log in or Create an account to join the conversation.
02 Feb 2024 14:21 #292217
by onceloved
Replied by onceloved on topic A Teensy -> Python Interface Manualmatic MPG/pendant
Can I use esp32 s3? Teensy is too expensive
Please Log in or Create an account to join the conversation.
02 Oct 2024 14:15 #311180
by fletch
My apologies @onceloved, I missed this post. The board is designed around the Teensy 4.1 partial because it has enough GPIO pins (although that could be worked around with a MUX) but primarily because of the optimised encoder library from Paul Stroffregen which pretty much guarantees lossless use of the MPG - you can spin it as fast as humanly possible and it won't lose steps.
If ever I moved to a wireless re-design, it would likely be a choice between the ESP32 and a Pico W, but that is a far off project!
As for cost, the Teensy makes up only a small(ish) part of BOM so this is not a cheap pendant (there may well be cheaper COTS ones out there) but is is the best
Philip
Replied by fletch on topic A Teensy -> Python Interface Manualmatic MPG/pendant
Can I use esp32 s3? Teensy is too expensive
My apologies @onceloved, I missed this post. The board is designed around the Teensy 4.1 partial because it has enough GPIO pins (although that could be worked around with a MUX) but primarily because of the optimised encoder library from Paul Stroffregen which pretty much guarantees lossless use of the MPG - you can spin it as fast as humanly possible and it won't lose steps.
If ever I moved to a wireless re-design, it would likely be a choice between the ESP32 and a Pico W, but that is a far off project!
As for cost, the Teensy makes up only a small(ish) part of BOM so this is not a cheap pendant (there may well be cheaper COTS ones out there) but is is the best
Philip
The following user(s) said Thank You: onceloved, tenfrozentoes
Please Log in or Create an account to join the conversation.
Time to create page: 0.204 seconds