OK, I watched it. Best part was when Chyrosran tore into the horrendous QMK and VIA softwares. The keeb is an engineering marvel. I am definitely jealous, because I have plans of my own for a custom keeb and caps. I was not going to go 3D printed though. And I had not considered HE switches, and now I am intrigued. The look of the final product was maybe not so much for me, but that hardly detracts from the amazing work you did. What software did you use to design and program the PCB?
Challenges with the firmware: Mostly just learning embedded rust. It’s a bit different from regular rust because your don’t have access to std (which means no Vec!).
I remember having the hardest time just organizing the code. As in, I wanted to divide everything up into logical segments like, “LEDs”, “multiplexers”, “infrared”, etc and rust makes it kinda hard to do that without making everything it’s own little crate. Specifically, if you want your code to be device-agnostic. If you only care about your one board then it’s easy and doesn’t matter so much 🤷
I got the boards made at JLCPCB because they’re the cheapest and seemed good enough 🤷
OK, I watched it. Best part was when Chyrosran tore into the horrendous QMK and VIA softwares. The keeb is an engineering marvel. I am definitely jealous, because I have plans of my own for a custom keeb and caps. I was not going to go 3D printed though. And I had not considered HE switches, and now I am intrigued. The look of the final product was maybe not so much for me, but that hardly detracts from the amazing work you did. What software did you use to design and program the PCB?
I used kicad and wrote the firmware in Rust from scratch 👍
What challenges did you run into with the firmware? Oh, and where did you have the PCB made?
Challenges with the firmware: Mostly just learning embedded rust. It’s a bit different from regular rust because your don’t have access to
std
(which means noVec
!).I remember having the hardest time just organizing the code. As in, I wanted to divide everything up into logical segments like, “LEDs”, “multiplexers”, “infrared”, etc and rust makes it kinda hard to do that without making everything it’s own little crate. Specifically, if you want your code to be device-agnostic. If you only care about your one board then it’s easy and doesn’t matter so much 🤷
I got the boards made at JLCPCB because they’re the cheapest and seemed good enough 🤷