juja
@juja@lemmy.world
- Comment on My brain to itself 5 months ago:
Shawty got low low low low
- Comment on Sony is erasing digital libraries that were supposed to be accessible “forever” 8 months ago:
He smashed it in a fit of rage
- Comment on a story in two parts 9 months ago:
TIL
- Comment on MSI teasing a handheld gaming PC like the Steam Deck 10 months ago:
I remember reading a post here about steam looking to make steamOS available for other handhelds. I think it would make sense for them to get other handhelds to use steamOS , as that may drive up steam usage and sales.
- Comment on Broadcom lays off many VMware employees after closing its $69 billion acquisition of the company 11 months ago:
What does this mean for the spring framework? Doesn’t VMware maintain spring these days ? Or is it unrelated ?
- Comment on Do any of you use Raspberry Pi’s ? 1 year ago:
It actually turned out to be easier than I thought.
The infrared reader (arduino code) is based on
github.com/Arduino-IRremote/Arduino-IRremote
The code running on my raspberry pi was written in Java using spring boot which is probably overkill but I am more comfortable with java than python so I used
github.com/Fazecast/jSerialComm
to read data from the pi’s usb port and just sent instructions to the unified remote server which does most of the heavy lifting. I used
github.com/…/UnifiedRemoteConnection.java
as a reference along with some verbose logging on the unified remote server to see what codes needed to be sent over the rest api.
- Comment on Do any of you use Raspberry Pi’s ? 1 year ago:
I use it as a media remote for my computer via infrared. IR sensor sends analog data to an arduino which converts it to digital and sends it to a raspberry pi which then invokes commands to control media on my computer by invoking rest apis on a “unified remote” server running on the computer.