Welcome to HiBit

HiBit is a platform made by and for enthusiasts of the IT world.

Recent articles

Preview image

8 EMS PCB Manufacturers in China for Complete Manufacturing

  • 34 Views
  • 10 mins read

Choosing a PCB supplier is one thing. Choosing an EMS PCB manufacturer is another.

A traditional PCB supplier may only deliver bare circuit boards. A PCB assembly company may only place components onto the board. But an EMS PCB manufacturer is expected to handle a broader manufacturing chain: PCB fabrication, component sourcing, SMT and through-hole assembly, testing, cable integration, enclosure assembly, packaging, and sometimes even product-level engineering support.

Read more
Preview image

Keep your codebase clean with Git hooks

  • 185 Views
  • 9 mins read

Every developer has been there: you push a commit, CI fails, and it turns out there was a linting error, a forgotten debug statement, or a test that nobody ran. Pre-commit hooks are the safety net that catches these problems before they ever leave your machine. They are not a complex feature or an advanced Git topic. They are just scripts, and once you understand how they work, you will find yourself reaching for them on every project.

Read more
Preview image

Low power consumption mode in Arduino

  • 324 Views
  • 11 mins read

Battery-powered Arduino projects have one common enemy: a board that drains power even when it has nothing to do. By default, Arduino runs at full speed continuously, burning through battery charge whether it's actively doing something or just waiting. Low power mode solves this by putting the microcontroller to sleep when it's idle, waking it up only when there's actual work to do. The concept is straightforward: the microcontroller spends most of its time asleep, wakes up to do something useful (take a sensor reading, send data, check a button), then goes back to sleep immediately.

Read more