Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
LittleLily
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
8 ms
·
1.
▲
by
LittleLily
2mo ago
Any reason why you didn't just use ESPHome for the firmware? It even has a component specifically for the ULN2003 stepper motor driver you were using https://esphome.io/components/stepper/#uln2003-component
2.
▲
by
LittleLily
2mo ago
I wonder if it would be possible to get ZMK working on it instead, since that's built primarily for wireless support, and also supports wired configurations too as of recently. Seems like the STM32 that the Q6 pro uses is supported, so
3.
▲
by
LittleLily
5mo ago
In my experience it makes even more sense in functional programming languages, not less, since they usually also have more powerful type systems that help with actually representing parsed vs unparsed data.
4.
▲
by
LittleLily
5mo ago
DEL is unicode codepoint U+007F, which is the byte 0x7F in UTF-8, not 0xFF. Perhaps you were thinking of ÿ which is codepoint U+00FF, which encodes to the bytes 0xC3 0xBF in UTF-8.
5.
▲
by
LittleLily
5mo ago
Here's an equivalent shell script that only uses bash builtins, so no other software required: #!/bin/bash mac="\\x${1//:/\\x}" wol="\xFF\xFF\xFF\xFF\xFF\xFF" for i in {1..16};