Navigation

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

    paqor

    @paqor

    4
    Reputation
    36
    Posts
    816
    Profile views
    2
    Followers
    2
    Following
    Joined Last Online

    paqor Follow

    Best posts made by paqor

    • DS18B20 API 2.0

      https://smarthome.gleisnetze.de/j/kategorieren/14-it/44-dallas-ds18b20-temperaturmessung-mysensors-api-2-0-und-fhem

      posted in My Project
      paqor
      paqor
    • RE: Air Quality Sensor

      Those interested in a 4 sensors Sketch FHEM (CO2, Temp, Hum, Motion) has ...

      posted in Hardware
      paqor
      paqor
    • RE: [Solved] API 2.0 void receive(const MyMessage& message) Problem

      @TheoL said:

      @paqor That it solve your problem?

      Yes
      https://gleisnetze.de/2016/08/07/sensoren4sketch-v0-6-under-contrstruction/

      posted in Troubleshooting
      paqor
      paqor

    Latest posts made by paqor

    • RE: ESP8266Wifi Gateway won't connect

      Hello have with the gateway constantly disconnects after a few days and I can only reactivate it by resetting on the gateway.

      Have now inserted a separate power supply with a large electrolytic capacitor 5000 ยตF-let's see....

      posted in Troubleshooting
      paqor
      paqor
    • RE: ESP8266Wifi Gateway won't connect

      @hard-shovel said in ESP8266Wifi Gateway won't connect:

      MySensors version 2.3.2 and ESP8266 core 2.7.4 works

      posted in Troubleshooting
      paqor
      paqor
    • RE: Ceech Board MOSFET Pin DIGITALWRITE Problem

      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.

      Screenshot_20200528_165820.png

      posted in Development
      paqor
      paqor
    • RE: Ceech Board MOSFET Pin DIGITALWRITE Problem

      Unfortunately, it's not that simple. Then it would have worked. What else could have caused this strange behavior?

      posted in Development
      paqor
      paqor
    • RE: Ceech Board MOSFET Pin DIGITALWRITE Problem

      The MOSFET_outputs are two blank pins. I haven't found anything official about this, except in a post here and a circuit. I supply the voltage converter with VCC and at the bottom of these pins towards the RESET button.

      upload-02ce5e27-5068-4d58-8c6b-df5706a26a70.png

      posted in Development
      paqor
      paqor
    • RE: Ceech Board MOSFET Pin DIGITALWRITE Problem

      Oh, thank you so much. I had to make some small changes though. Maybe it's the newer Ceech Board version.

       // IO PINS
        pinMode( 13  , OUTPUT ); //unclear why this is so
      
      ...
      
      
        present(0, S_MULTIMETER);
        present(0, S_CUSTOM);
      ...
      
      digitalWrite( POWER , HIGH );
      
      ...
      
      digitalWrite( POWER , LOW );
      
      posted in Development
      paqor
      paqor
    • Ceech Board MOSFET Pin DIGITALWRITE Problem

      Hi, I'm working with Ceech-Board for a pool sensor. I'm rewriting the code from V1.5 to 2.x. I encountered a problem with DIGITALWRITE which I can't explain.

      Only if I set PINMODE unequal to the PIN for DIGITALWRITE, this output works.

      void setup() {
        pinMode(5, OUTPUT); // Setzt den Digitalpin 13 als Outputpin
      }
      
      void loop() {
        digitalWrite(4, HIGH); // Setzt den Digitalpin 13 auf HIGH = "Ein"
        delay(1000);            // Wartet eine Sekunde
        digitalWrite(4, LOW);  // Setzt den Digitalpin 13 auf LOW = "Aus"
        delay(1000);            // Wartet eine Sekunde
      }
      

      It worked with pin 3, 5 and 13 e.g.

      On the board the PIN D4 is followed by a MOSFET for switching. This worked once, once again not. No I seem to have found the problem, but what is the cause?

      posted in Development
      paqor
      paqor