• 3D Mouse With 3D Printed Flexures And PCB Coils
    Technology

    3D Mouse With 3D Printed Flexures And PCB Coils

    3D mice with six degrees of freedom (6DOF) motion are highly valued by professional CAD users. However, the entry-level versions typically cost upwards of $150 and are produced by a single manufacturer. [Colton Baldridge] has created the OS3M Mouse — an open source alternative using PCB coils and 3D printed flexures. The primary challenges in creating a 6DOF input device, similar to the 3Dconnexion Space Mouse, lie in developing a mechanical coupling that enables full range motion, and electronics capable of precisely and consistently measuring this motion. After several iterations of printed flexure combinations and trip down the finite element analysis (FEA) rabbit hole, [Colton] had a working single-piece mechanical…

    Comments Off on 3D Mouse With 3D Printed Flexures And PCB Coils
  • A DIY E-Ink Tank Watch
    Technology

    A DIY E-Ink Tank Watch

    [Augusto Marinucci] liked the classic Cartier Tank series of dress watches aesthetic, but wanted something a bit more techy, with a decent runtime on a single battery. E-Ink displays are often used in such applications, but finding one to fit a custom case design, is a tall order. When ordering one off the shelf is not easy, the solution is to make one from scratch. Building a programming jig is a great idea for small-scale production The article doesn’t have much information on the E-Ink side of things, which is a bit of a shame. But from what we can glean, the segment shapes — in this case, based on…

    Comments Off on A DIY E-Ink Tank Watch
  • Simulating Cellular Biology In The Browser
    Technology

    Simulating Cellular Biology In The Browser

    [Technistuff] read a paper about simulating a “minimal” cell — apparently a cell with only 493 genes. This led to a goal: reproduce the simulation in TypeScript so it can run in a web browser. Why? We don’t know, but it is an interesting look at both in-depth biology and how to handle complex simulations. The code is available on GitHub. For a point of reference, E. Coli has over 4,500 genes. The cell in question — JCVI-syn3A — actually has seven more genes than truly necessary. The data for this bacteria is available from a research lab, again, using GitHub. The chemical master equation models DNA transcription to mRNA,…

    Comments Off on Simulating Cellular Biology In The Browser
  • Kinetic Clock Is A Clean Modern Way To Tell Time
    Technology

    Kinetic Clock Is A Clean Modern Way To Tell Time

    Hackers and makers aren’t usually too interested in basic round analog clocks. They tend to prefer building altogether more arcane and complicated contraptions to display numbers for the telling of time. [alstroemeria] did just that with this nifty kinetic clock build. The basic concept of the kinetic clock is to have a flat plate, which individual segments raise out of to create a physical (instead of illuminated) 7-segment display. This is achieved with servos which push the segments in and out using a small rack mechanism. It’s not a sophisticated build; it simply uses 30 servos to handle all the segments needed to tell time. Thus, the Arduino Mega was…

    Comments Off on Kinetic Clock Is A Clean Modern Way To Tell Time
  • Voice Controlled Rover Follows Verbal Instructions To Get Around
    Technology

    Voice Controlled Rover Follows Verbal Instructions To Get Around

    Typically, when we want to tell a robot where to go, we either pre-program a route or drive it around with some kind of gamepad or joystick controller. [Robotcus] decided to build a simple robot platform that drove around in response to voice commands instead. The robot is based around a Raspberry Pi Zero, charged with instructing the motor controllers to drive the ‘bot around. The Pi Zero is also in charge of interpreting the voice commands via Google’s speech recognition tool. The ‘bot itself is a fairly simple design using brushed gearmotors for propulsion and a 3D-printed chassis to tie everything together. The car is capable of understanding five…

    Comments Off on Voice Controlled Rover Follows Verbal Instructions To Get Around
  • A Look Inside The Smallest Possible PNG File
    Technology

    A Look Inside The Smallest Possible PNG File

    What’s inside a PNG file? Graphics, sure. But how is that graphic encoded? [Evan Hahn] shows you what goes into a single black pixel inside a 67-byte file. Why so many bytes? Well, that is exactly what the post is about. You had to guess there is some overhead, right? There is an 8-byte header. Next up is a 25-byte metadata block. That single pixel takes 22 bytes, and then there is a 12-byte marker for the end of file. Turns out, you could put a bit more in the file, and would still take 67 bytes. The metadata is in a chunk — a block of data with a…

    Comments Off on A Look Inside The Smallest Possible PNG File