• CorrectAlias@piefed.blahaj.zone
    link
    fedilink
    English
    arrow-up
    63
    ·
    6 days ago

    I agree when it comes to most “smart” home devices. However, I wired an ESP32 to my heat pump for remote control and automation, which has been absolutely fantastic. Also, I use a ton of ZigBee and zwave, since those are not “smart” by themselves and are local-only.

    It’s the cloud bullshit that always breaks and spies on users that I hate.

    • Therefore@lemmy.world
      link
      fedilink
      arrow-up
      35
      ·
      edit-2
      6 days ago

      Yeah home built and programmed smart devices are the way to go. I’m addicted to the rush of making dumb appliances automated.

      The smartphone controlled aircon for $150 extra? Slap a $4 Esp in that. $400 to get sleek control of your central heating? $4 Esp. Turn on the ice maker on the commute home? You guessed it, $4 Esp.

      • Auli@lemmy.ca
        link
        fedilink
        English
        arrow-up
        3
        ·
        6 days ago

        Where the hell are you getting 4 ESP. And no its not good for everything. I buy zwave switches and water sensors.

      • SeductiveTortoise@piefed.social
        link
        fedilink
        English
        arrow-up
        0
        ·
        6 days ago

        I wanted to do ESPify my fume hood for some time now, but I don’t really know where to start. Do you have some website/howto for me to get started? To be honest, I don’t really care about smarting up the actual extraction part. I just want to turn on and off the lights without finding the non-illuminated touch button on the black glass. Who designs crap like that?

        • Therefore@lemmy.world
          link
          fedilink
          arrow-up
          3
          ·
          6 days ago

          You need electrical experience, I wouldn’t recommend anyone to work with high voltages unless they knew what they were doing. The method depends on the device, every one is different. For the aircon unit the esp is an internal remote, so I spent time decoding that model’s IR codes and building a platform for reliable control via home assistant. I have fans around the house that use mains voltage motors with 3 speeds, those got an interlocked 3 channel relay board. The ice maker used digital logic, so the esp sits between the control board and the rest and intercepts button presses to keep track of state and the injects its own commands for remote control(not my work). If you are lucky there will be a guide on the internet you can apply to your specific device, otherwise you’ll have to work the project out solo from smaller guides.

          • SeductiveTortoise@piefed.social
            link
            fedilink
            English
            arrow-up
            1
            ·
            5 days ago

            I just wanted to interfere with the button board, I’d guess this will run on 3.3 or 5 volts. Simulate the touch events so to speak.

            • Therefore@lemmy.world
              link
              fedilink
              arrow-up
              1
              ·
              5 days ago

              Yeah so you’d probably just be grounding the positive side of the button momentarily. I’m pretty sure I did that with a ducted heater remote once, if it’s 3.3 you can just attach it to a pin from your board, then send the pin low to press. 5v you might want a level shifter in between. Have you used esphome before/do you have home assistant? Then you can automate the press to a motion sensor or widget on your phone.