• 0 Posts
  • 551 Comments
Joined 1 year ago
cake
Cake day: June 29th, 2023

help-circle

  • I have a Yale PIN lock that has swappable wireless cards. I use it on a Zigbee network, but that’s completely optional. It’s fantastic. Even without the wireless, it’s great.

    I’ve had to reprogram it once or twice just due to issues with my smart home stuff, and even the physical interface is nice and easy, assuming you’re just entering your PIN or if you have the manual available if you’re doing anything more involved.







  • I did the rim to rim hike over 4 days, 3 nights. We hiked in from the North Rim.

    I was not in nearly as good of shape as you were, but in probably the best shape of my life.

    It was an amazing trip, but the hike out was no fucking joke. And you did it in half the time I did. Hard to imagine.

    I distinctly remember seeing runners who would run by with no camping gear, meaning they were presumably doing the entire trail in one day. I don’t understand how that’s possible.











  • A lot of the modern tech is really good, though.

    Cars are way more reliable than they were. They get way better gas mileage. They have a shitload more power (this is actually a con due to how everyone else drives these days). They’re way safer in both accidents and just general driving with traction control and lane departure warnings.

    So it’s a real mixed bag. But I’d rather have the cars of today.



  • Auto detection for MQTT devices is a bit tricky. I struggled with that myself when I was trying to incorporate data from a web scraper I wrote. This config file here shows what I ended up with to create auto detecting sensors in HA https://github.com/chunkystyles/reservationsScraper/blob/main/mqttConfig.json

    Each one of the devices gets registered at start up of the app.

    If I were doing this all over again, I probably wouldn’t use auto detect sensors. I’d manually configure them. Here’s some examples of that kind of configuration I used for some HVAC remote devices I built:

    mqtt:
      sensor:
        - name: "makerfabs_remote_1"
          state_topic: "makerfabs/hvacremote/1/status_out"
          force_update: true
          expire_after: 125
        - name: "makerfabs_remote_2"
          state_topic: "makerfabs/hvacremote/2/status_out"
          force_update: true
          expire_after: 125
        - name: "makerfabs_remote_3"
          state_topic: "makerfabs/hvacremote/3/status_out"
          force_update: true
          expire_after: 125
        - name: "makerfabs_remote_4"
          state_topic: "makerfabs/hvacremote/4/status_out"
          force_update: true
          expire_after: 125
    

    For these to work, you just put them in your “configuration.yaml” file in HA.