Navigation

    • Register
    • Login
    • OpenHardware.io
    • Categories
    • Recent
    • Tags
    • Popular
    1. Home
    2. enlo
    3. Posts
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Posts made by enlo

    • RE: 💬 Building a Raspberry Pi Gateway

      @ccy that correction to the detect_machine function was necessary on my Rpi 3 too (I took the latest version from master). I got it working with that addition.
      Soooo I guess that would be worth adding to the code / opening an issue on github, wouldn't it?

      posted in Announcements
      enlo
      enlo
    • RE: Mys Interposer NRF/Arduino Pro Mini

      I ordered a batch from PCBs.io
      With the permission of the orginal author, I could enable sharing it there, which should reduce the price...

      posted in OpenHardware.io
      enlo
      enlo
    • RE: Monitoring a wood boiler heating system

      @korttoma Thanks for your explanation!
      I am thinking about integrating a heat sensor too but I am not confident enough to manipulate the chimney - yet 🙂

      posted in My Project
      enlo
      enlo
    • RE: Monitoring a wood boiler heating system

      @korttoma just being curious: how did you install that smoke sensor? drill an hole into the chimney?

      posted in My Project
      enlo
      enlo
    • RE: MySensors Gatway dimmers & Home assistant

      You should get rid of whiteLed (replace it with currentWhiteLevel). There is no need for two state variables for the same thing. I think they can even run out of sync, when the button is pressed while the message is processed.

      However, I am not really sure if they are responsible for your issue.

      posted in Hardware
      enlo
      enlo
    • RE: MySensors Gatway dimmers & Home assistant

      what is currentWhiteLevel? The state variable seems to be whiteLed, right?
      currentWhiteLevel is not initalized before the loop starts and is not necessarily == whiteLed when fadeWhiteToLevel starts

      posted in Hardware
      enlo
      enlo
    • RE: Driveway Alarm / Vehicle detection

      If you did not yet buy that chip: According to SparkFun, that sensor is retired. But they do suggest alternatives.
      I am not sure if that's SparkFuns definition or Honeywell

      posted in Hardware
      enlo
      enlo
    • RE: How to give Input/Feedback to mysensors.org pages

      Thanks, I will do that!

      posted in General Discussion
      enlo
      enlo
    • How to give Input/Feedback to mysensors.org pages

      While readying the pages here on mysensors.org, I sometimes spot something that I think is a bit misleading or even the occasional typo.

      I know how to contribute to the code, but how and where should I report stuff related to the website? Is it possible to somehow contribute to existing pages?

      posted in General Discussion
      enlo
      enlo
    • RE: 💬 Insulated Whole House Fan

      @petewill wow, your screen case looks amazing! Is that acryl glass? Did you build that yourself too?

      posted in OpenHardware.io
      enlo
      enlo
    • RE: Hacking a Neato Robotics BotVac Connected

      This is the code I found in the app. there is also a selfsigned certificate, which probably matches the robot.
      So the reason why you can't make out anything useful in the traffic: It's SSL encrypted.

                  HttpsURLConnection httpsURLConnection3 = (HttpsURLConnection) new URL(str2).openConnection();
                  try {
                      if ("neatoProduction".contains("vorwerk")) {
                          httpsURLConnection3.setSSLSocketFactory(C0751h.m5821a(0));
                      }
                      httpsURLConnection3.setConnectTimeout(60000);
                      httpsURLConnection3.setReadTimeout(60000);
                      if (str.equals("GET") || str.equals("DELETE")) {
                          httpsURLConnection3.setDoOutput(false);
                      } else {
                          httpsURLConnection3.setDoOutput(true);
                      }
                      httpsURLConnection3.setRequestMethod(str);
                      String a = C0742a.m5803a(NeatoApplication.m5360a(), "ACCESS_TOKEN");
                      if (a != null) {
                          httpsURLConnection3.setRequestProperty("Authorization", "Token token=" + a);
                      }
                      httpsURLConnection3.setRequestProperty("Accept", "application/vnd.neato.beehive.v1+json");
                      httpsURLConnection3.setRequestProperty("Content-type", "application/json");
                      httpsURLConnection3.setRequestProperty("X-Agent", C0765b.m5864f());```
      posted in General Discussion
      enlo
      enlo