Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wemos D1 mini Pro issue. #430

Open
Patrinos90 opened this issue Apr 4, 2022 · 1 comment
Open

Wemos D1 mini Pro issue. #430

Patrinos90 opened this issue Apr 4, 2022 · 1 comment

Comments

@Patrinos90
Copy link

I am trying to make my first arduino simple project based on the directions of this video for a gift to my fiancee [url]https://www.youtube.com/watch?v=duiAbLsXZSE&ab_channel=Breaks%27n%27Makes[/url]

You may watch it so you can understand better.

It uses the app Blynk.

I follow his directions exactly but I made one change: I use a WS2811 led strip with a 12V-1A power supply so I power the LED strip from the power supply by soldering it on the step down converter's inputs.

Long story short, I fried 2 Wemos. Maybe it was my fault because I accidentally put wrong wire to the wrong input. I dont remember tbh.

The connections are fine.

Here was the circuit: [img]https://i.stack.imgur.com/b5MI8.jpg[/img]
Here is the code:
[code]#include <Adafruit_NeoPixel.h>
#include <SPI.h>
#include <BlynkSimpleEsp8266.h>
#include <ESP8266WiFi.h>
#include <Stepper.h>

#define PIN D2
#define NUMPIXELS 60
#define BLYNK_PRINT Serial

int motorSpeed;
int motorDirection;

const int stepsPerRevolution = 4096;

BlynkTimer timer;
Stepper myStepper(stepsPerRevolution, 14, 12, 13, 15);
Adafruit_NeoPixel pixels = Adafruit_NeoPixel(NUMPIXELS, PIN, NEO_GRB + NEO_KHZ800);

void stepperControl() {
if (motorSpeed > 0) {
if (motorDirection == 0) { // Rotate Clockwise
myStepper.step(stepsPerRevolution / 50);
} else { // Rotate CounterClockwise
myStepper.step(-stepsPerRevolution / 50);
}
}
}

void setup()
{
Serial.begin(9600);
timer.setInterval(1, stepperControl);
Blynk.begin("XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", "XXXXXXXXXXXXXXXXX", "XXXXXXXXXXXXXX");
pixels.begin();
pixels.setBrightness(55);
}

void loop()
{
Blynk.run();
timer.run();
}

BLYNK_WRITE(V0)
{
motorSpeed = param.asInt();
myStepper.setSpeed(motorSpeed);
}

BLYNK_WRITE(V2)
{

int R = param[0].asInt();
int G = param[1].asInt();
int B = param[2].asInt();
Serial.println(R);
Serial.println(G);
Serial.println(B);
for (int i = 0; i < NUMPIXELS; i++) {

pixels.setPixelColor(i, pixels.Color(R, G, B));

pixels.show();

}
}[/code]

Here was my first failure:
https://www.youtube.com/watch?v=SOYLV7v2Txo

I gave a shot at it again.

Removed the led strip from the equation, to simplify things.
Bought a new same Wemos.

  1. The sketch uploads successfully again.
  2. Voltage measurements seem fine before the wemos is connected.
  3. When Wemos is connected to the circuit, Voltage across the 5V input of the Wemos as long as positive output of the step down converter becomes about 3.4V (!!!). Even though before wemos, the voltage is at 5V!
  4. Stepper driver lights come on except the 4th one. Stepper motor not rotating.
  5. Blynk app isn't identifying connectivity from the Wemos so I cant control the motor from there.

Note: When connected from the USB, the lights of the stepper driver dont even light on and serial monitor of Arduino IDE is BLANK!
The connections of the inputs of the stepper driver are correct since I copied them from the tutorial.
Also, the Wemos gets kind of hot.

New simpler circuit:
[img]https://i.ibb.co/8xZ650t/circuit-1.png [/img]

Here is another video of a failed attempt:

[url]https://youtu.be/URC1zY3y0tY[/url]

At my wit's end.
Help.

@AchimPieters
Copy link

@Patrinos90 I don't see a relation to ESP-HomeKit?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants