-
-
Notifications
You must be signed in to change notification settings - Fork 274
New issue
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
Numbers only #16
Comments
Hey Sam, sorry for taking sooooo long to respond! I haven't looked too much into making a number-only display, but here are some thoughts from playing around with it for a few minutes: You can easily decrease the number of flaps by adjusting the num_flaps variable, but this reveals some other issues: (In this example I decreased the number of flaps to 10, though you would maybe want to include at least one more so there can be an empty flap in addition to numbers 0-9) The things you see sticking out of the center there are the "spool struts" which make sure that the disks on either side of the spool turn at the same speed. On the 40 flap design, those struts fit into rectangular holes in the disks and hold the spool in alignment: But when the spool disks are much smaller for just 10 flaps, there isn't enough room for those struts in the center of the spool any more, so some modification would probably need to be made, such as replacing the fixed axle with a rotating axle, where each side of the spool is glued or attached to the axle to keep them aligned. Depending on materials and desired longevity, you would maybe want to add bearings on the enclosure to allow the axle to spin with less friction. If we set aside the struts and look at the other side, the gear appears to be sticking out of the front: We can change the size of that gear by adjusting the spool_teeth variable and shrink it down to something like 10 teeth: However, now the motor has a gear with 40 teeth and the spool has 10 teeth, meaning the spool will spin 4 times for every revolution of the motor! The motor may not have enough torque for that, and such a high gear ratio also reduces the precision available from the stepper motor. So it would probably make sense to also decrease the motor_teeth variable. This of course introduces a new minor problem - with the smaller gears, the motor ends up much closer to the flaps. This is fine for a single display, but if you were to place 2 next to each other, the flaps of one display would hit the motor from the adjacent display: One solution to that is to increase the size of the idler gear, which doesn't affect the gear ratio at all: At this point the design is getting pretty close to something that could work, though there are a few more details that would need to be worked out (home position sensor/pcb mounting holes, bushing sizes, etc). I'd encourage you to check out the OpenSCAD code and play around with changing different variables and seeing what happens! I'm sure there are tons of variations and possibilities I haven't even considered yet, and I'd love to hear what you come up with. |
Thank you for the very detailed answer. I'm also interested in building an Internet-connected counter out of it! |
I'm also interested in a numbers only display for a clock. One workaround for the mechanical issues might be to repeat each digit several times, so 4 times 10 gives 40. Then you need to adjust the control circuit to advance 4 flips to get to the next digit. |
was reading that another option is to do 20 flaps instead, 2 sets of the digits+blank. was hoping that by doing numbers only that this would help reduce some complexity. Has anyone tried making a number only one? |
I’ve also been thinking about a number-based one. |
I'm currently working on a fork where i'm tinkering with the variables of the openscad render file to enable a numbers only display. A few things need to be adjusted to build a display with fewer flaps.
It's also a possibility to move the magnet and hall effect sensor to the other side. This is the intermediate result that I have, but I have to rewrite My fork is over at https://github.com/whitebird/splitflap |
Hey Scott,
I was wondering if I wanted to make it numbers based only. No characters. How would this affect the code and the size of the wheel hosting the cards and the entire mechanism?
Cheers,
Sam
The text was updated successfully, but these errors were encountered: