Skip to main content

Questions tagged [voltage]

Voltage is the difference in electric potential between two points of an electric circuit, measured in Volts (V). Voltage can be constant (DC) or varying (AC).

Filter by
Sorted by
Tagged with
-3 votes
2 answers
62 views

The x and y axis pins on the KY-023 are labeled VRx and VRy, but I'm curious as to what they stand for, as I couldn't find any official statements about it. I assumed it was "Variable Resistor X/...
Flamethrower's user avatar
-1 votes
1 answer
754 views

I am a beginner and tried powering MG996R Tower Pro (180 deg Metal Gear) Servo from Arduino UNO and ended up hibernating the host PC. I want to power 2 such motors (in parallel configuration) for lets ...
Aditya Jain's user avatar
2 votes
2 answers
974 views

I ordered a ADS1115 so I could measure temperature of a type K thermocouple, but I am not managing to get accurate readings. I had it working while having a normal A0 pin, but since the type K table ...
Bart's user avatar
  • 123
0 votes
2 answers
1k views

I am using an ESP32 a TB6600 micro stepper, and a Nema 23 stepper motor, I am trying to control the motor with the esp32 but the TB6600 requires a 5v signal, I tried to fix this by using a logic level ...
warherolion's user avatar
1 vote
1 answer
245 views

I want to give different PWM (D11) signals based on how much voltage is input (A7). How can I change PWM for different analog values? #include <LiquidCrystal.h> #include <ezButton.h&...
hfsrg's user avatar
  • 39
1 vote
0 answers
42 views

I can't seem to find the problem, and I believe its not about the code but I will give you the code nevertheless. const int pinOFswitch = 4; const int motor_3 = 7; const int pushbtn = 5; void ...
IM OG's user avatar
  • 11
-1 votes
2 answers
94 views

I have a project that has two 12-V .2 amp fans, one 30 3 amp LED COB panel, and a 5-V Arduino. I was wondering if there was a simple method to power all of these devices from a 120 V wall outlet. As ...
NoobEngineer123's user avatar
0 votes
1 answer
95 views

This issue may be weird, and I'm not sure if this is because of my wiring, but it would seem that I do not have the same voltage (or approximately the same voltage) between the VCC(3.3V) and the VCC ...
BruceWawe's user avatar
0 votes
1 answer
383 views

#define monitor_pin 14 void setup() { pinMode(monitor_pin , INPUT); } void loop() { unsigned long d1 = pulseIn(14, HIGH); if (d1>0){//trigger function} } I know there is a function ...
Jess's user avatar
  • 53
0 votes
1 answer
156 views

I was wondering if it is possible to power up a 12V solenoid valve from the DC jack of the Arduino Uno, provided that I'm powering the Arduino from the same jack:
Fabio Magarelli's user avatar
0 votes
3 answers
282 views

I am using a Arduino MKR 1010 Wifi board to control 4 servo (PS-1109MG). All the circuit is powered by 4 AA rechargeable batteries (1.2V * 4). Arduino is powered through the Vin port. Below is a ...
Adrian's user avatar
  • 11
3 votes
1 answer
631 views

I want to display the true RMS of the main voltage using an Arduino and a MAX7219. At first, I used of circuit #1 (the following circuit) and the True RMS library. The circuit could successfully ...
soheil's user avatar
  • 59
1 vote
2 answers
365 views

I am building a small automated indoor greenhouse. I want to use an Arduino Nano to control some LEDs und a fan (both through relays) and a water Grove Water Atomization module. Everything works fine, ...
meyer_mit_ai's user avatar
0 votes
1 answer
172 views

recently in one of my projects I have wanted to make battery powered. I was wondering if I could connect the charger to the battery and the battery to the Arduino without blowing it. The battery is ...
alexlikesallthegamez's user avatar
0 votes
2 answers
5k views

I read this answer https://arduino.stackexchange.com/a/51878 to a different, but related question. It seems like VIN on the NodeMCU is directly or via diode connected to the USB connector. Image ...
rattlesnake's user avatar
1 vote
0 answers
786 views

I'm trying to measure the current, voltage, and power of AC load using Peacefair PZEM-004Tv3.0 module. For the serial communication of this module, I'm using SoftwareSerial Pins 2 and 3 on Arduino Uno....
Nebula Shade's user avatar
1 vote
1 answer
396 views

I would like to power my arduino nano with a 9V battery, but I would also like to measure the voltage of the battery to know its charge level. Can I use the MAX471 Voltage Current Sensor module by ...
NOMAD's user avatar
  • 11
1 vote
2 answers
902 views

I have a electrolysis cell in which the anode is hanging using a Structure in a electrolyte. The cathode is at the bottom of the cell with electrolyte above it and anode being dipped into this ...
surendra choudhary's user avatar
2 votes
1 answer
903 views

I a very simple question about calculating the amperage I need to run 5 stepper motors from my Arduino Uno. If I have 5 28BYJ-48 stepper motors(which are 5V and are said to require about 240mA each) ...
KidWithComputer's user avatar
0 votes
1 answer
585 views

I read the Arduino official docs on digitalWrite and am confused about what is happening from an electrical perspective when digitalWrite is invoked on INPUT_PULLUP pins. Say my code says this: ...
rfii's user avatar
  • 170
2 votes
1 answer
95 views

I’m new to arduino and I want to build myself smart switch that can be turned of both manualy and via wifi, is there any way to change position of relay based on if another wire is live or not? Im ...
krystof18's user avatar
  • 315
0 votes
1 answer
69 views

I have 3 micro-controllers that will be connected to a battery, and I need to provide each of them between 3 and 5 volts maximum. I have 3V batteries but they do not seem to provide enough power, ...
B7th's user avatar
  • 167
3 votes
2 answers
925 views

I would like to know if someone has experience with measuring high voltages using an Arduino. I know you can use resistors to lower the voltage, however. I want to be able to measure the pulses of an ...
TeD van Loon's user avatar
0 votes
1 answer
457 views

I Have been working on a power logger with INA219 and L298N the thing is, the voltage and current displayed on Serial Monitor is not the same on my multimeter. the Arduino is connected to the pc to ...
Rhu Pagal's user avatar
0 votes
1 answer
675 views

I had problems with connecting my devices via I2C. The "requestfrom" constantly hanged and the endtransmission sometimes gave NACK responses. After disconnecting the devices from 12V and ...
Roel's user avatar
  • 49