Navigation

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

    Topics created by paqor

    • paqor

      Ceech Board MOSFET Pin DIGITALWRITE Problem
      Development • • paqor  

      9
      0
      Votes
      9
      Posts
      79
      Views

      paqor

      hello, he runs, after much effort and nerves The values are a little bit very fluctuating? Probably you can only get away with a very accurate stable voltage of 5.0V.
    • paqor

      4/5 Sensor Sketch smarthome mysensors api 2.0 fhem (Temp+Hum DHT22, Motion HC-SR501, CO2 MH-Z19, Airquality MQ135)
      My Project • • paqor  

      2
      0
      Votes
      2
      Posts
      2263
      Views

      sola

      Hi paqor, I would like to build something similar to your multifunction node. The URL pointing to the project seems to be broken. Could you correct it or copy the info about your project here?
    • paqor

      DS18B20 API 2.0
      My Project • • paqor  

      4
      2
      Votes
      4
      Posts
      1724
      Views

      gbgent_nc

      Nice project. Even though some items are in a language I do not understand, the sketch provided me with a better understanding of the MySensors work. Thank you for making the connection of what I know and what I was having trouble understanding.
    • paqor

      [Solved] API 2.0 void receive(const MyMessage& message) Problem
      Troubleshooting • • paqor  

      8
      0
      Votes
      8
      Posts
      2266
      Views

      paqor

      @TheoL said: @paqor That's great. I looked at the Sketch you posted on your site and noticed you're still using a delay. Which as short as it may be can cause messages to be missed. void loop(){ //----------------------------------------------------------------------------- //TEMP_FEUCHTE delay(dht.getMinimumSamplingPeriod()); My advice is to do this with a wait as well. void loop(){ //----------------------------------------------------------------------------- //TEMP_FEUCHTE wait(dht.getMinimumSamplingPeriod()); // Changed ByTheo That way you don't block incoming messages. Generally, if you want your sketch to wait use a wait. genial, works perfectly....