paqor
@paqor
Best posts made by 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....
-
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
-
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. -
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?
-
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.
-
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 );
-
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?