cross-posted from: https://lemmy.ml/post/22289228

It’s a bit sad how deserted this community is, would love to connect more with other makers.

Let’s rattle the cage a bit, who of you is here, and what are you working on?

I’ll start: A wireless cryptographic keystore & signer. Keys are generated with the hardware RNG and stored AES-encrypted with the user’s password, and you can request signatures via BLE.

  • hendrik@palaver.p3x.de
    link
    fedilink
    English
    arrow-up
    3
    ·
    edit-2
    6 months ago

    Nice question. I have a complete shelf of unfinished ESP32 projects. I’m dabbling with ESPhome and audio stuff every now and then. I was trying to get the voice assistant running but there are so many different issues… I’ve settled for a webradio for now. That works - though - it’s more a ball of loose wires, I’d need to fix my 3D printer to print some casing. And decide what amount of features is enough for a webradio/voice assistant. Something I finished during the last few weeks is some christmas lighting for the front yard. I bought 40m of fairy lights, wrapped it around a smaller tree, soldered a controller and had that running for Halloween. I’m going to need to find a more permanent solution to get some electricity out there, maybe next week. And then it’s supposed to run each night during the season. And a few weeks before that I built an artificial fireplace for the livingroom. That’s two 8x32 LED matrices with a beefy 5V power supply and WLED on the ESP.

    (Edit: Saw your comment regarding the lemmy.ml community a bit too late. Now my comment is here. And I don’t like lemmy.ml that much anyways.)

    • Lovable Sidekick@lemmy.world
      link
      fedilink
      English
      arrow-up
      2
      ·
      2 months ago

      Automating xmas lighting is a lot of fun! My wife likes to setup a little xmas village she’s slowly accumulated over the years from thrift stores. A few years ago I ran a string of addressable rgb leds through the buildings and used FastLED to control them. Lights in selected buildings turn on and off at random intervals as if people live there, and some leds flicker erratically so it looks like firelight through the windows. Really looks cool. It seems like people who build little towns for model railroading might be interested in this kind of thing.

  • callcc@lemmy.world
    link
    fedilink
    English
    arrow-up
    2
    ·
    6 months ago

    I’m working on a weather station with a tiny oled display. In the end I spent all my time implementing a small windowing system and plotting lib.

  • Lovable Sidekick@lemmy.world
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    2 months ago

    Simple (yeah right) temperature control for my wife’s new greenhouse. In other words a thermostat, but also reporting inside and outside temps to a small touch display in the house, where the settings can also be adjusted.

    My goal is for the code to be updatable via OTA so I can seal the esp32 in a waterproof box. Running into problems with OTA but I won’t go into the gory details. But if anybody has solved the problem of controllers with OTA code running on them not showing up as “network ports” in the Arduino IDE so new code can be updated as simply as over usb (which works in multiple how-to videos) please let me know what makes that work.

    Also struggling with communication range of the esp32. The initial app using Node Red couldn’t reach the house wifi router, so I tried peer-to-peer using ESP-Now, with an esp32 halfway as a repeater. This worked but ESP-Now isn’t really a network, so you have to write your own code for things like registering nodes and keeping track of unreceived messages. So I might switch to PainlessMesh, a proper network that does these things. Or just get a wifi extender so Node Red will work - I really Node Red’s whole ecosystem.