this post was submitted on 18 Mar 2026
16 points (73.5% liked)

Programming

26127 readers
547 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 2 years ago
MODERATORS
 

I just joined this platform, anyone willing to show me around?


I would love you hear what people are upto here;

  • What projects are you working on?
  • Is there any known collaborative efforts? (i.e popular projects)
  • What are some good communities?

If you can answer my questions, I hope you leave a comment :v


PM's are open aswell if you prefer that :v

you are viewing a single comment's thread
view the rest of the comments
[–] comradelux@programming.dev 2 points 12 hours ago (1 children)

I see, I'm not super familiar. My extent of PCB design is a custom slimevr board for myself.

The solderable 16 byte ROM design is interesting, I could maybe see it being in some kind of debugger?

[–] interrupt_tv@piefed.world 1 points 7 hours ago (1 children)

Oh, that's cool. I hadn't heard of slimevr before.

My use case for the diode ROM board is to take 4 binary input bits (16 possible combinations) and translate them into what segments of a 7-segment LED display should be lit or unlit, in order to display the corresponding hexadecimal digit (0-9, A-F). Like so:

Diode ROM in use

It could be used for any other case where you need to convert a 4-bit input into 16 possible 8-bit outputs. In theory you could use them in multiples for more address space, but I forgot to include an enable pin on the board to allow for that. Something to add to the next version.

[–] comradelux@programming.dev 1 points 40 minutes ago

Maybe I'm not very experienced. Why would someone need a device to translate a 4-bit input to an 8-bit output, is it not just 0110 -> 0000 0110?