Skip to main content

Questions tagged [pwm]

Pulse-width modulation, is varying the duty cycle of a rectangle wave, usually with a constant frequency.

530 questions with no upvoted or accepted answers
1 vote
0 answers
84 views

Servo creates a constant "angle error" depending on its original position

I am trying to set a servo to move to the same angle always when given the same PWM signal. I am using a Savox SH-0262MG. I have an issue when I first move it manually (with my hand) to one of its &...
Christianidis Vasilis's user avatar
1 vote
0 answers
125 views

Inductor saturation current

I'm trying to determine an inductor's saturation current, I use a PWM with a gate driver (TLP250) and a 0.4Ω sense resistor at the source which I probe across to capture the current waveform. I ...
Emad's user avatar
  • 41
1 vote
0 answers
61 views

Low-frequency load drive stage design considerations

simulate this circuit – Schematic created using CircuitLab The circuit above is used to control a 240W ceramic heater by means of a PWM signal, generated by a microcontroller, with 5V logic. The ...
Francesco's user avatar
  • 1,025
1 vote
0 answers
124 views

How to let the robot car turn between 90 to 360 degrees?

The robot car has 3 motors, the first motor is a stepper motor which controls the 2 wheels in front of the car to tell which direction it is moving. The second and third motor is a dc motor which each ...
Zheng Xian's user avatar
1 vote
1 answer
125 views

PWM controller with synchronous braking

I'm a student and I'm attempting to study how to use two different PWM signals to continuously drive and brake a brushed 12 V motor from an microcontroller. First frequency will be around 4 kHz (for ...
Papuan's user avatar
  • 29
1 vote
0 answers
69 views

DC-DC step down converter frequency isssue

I want to power a heating element (24V,2.5A maximum). I decided to use a push-pull configuration with LM27222. Here is attached the circuit: simulate this circuit – Schematic created using ...
Daniele's user avatar
  • 285
1 vote
0 answers
57 views

Counter to common believe, Carrier frequency dosn't have to be an odd multiple of fundmental frequency in 3 phase Inverters -- But Why?

According to Dr. Holmes book titled "Pulse Width Modulation for power converters" he states "First, the frequency of the .carrier harmonic is independent of the fundamental reference ...
amidher's user avatar
  • 115
1 vote
0 answers
108 views

How do LED drivers with current control work

I'm reading the datasheets of this two LED drivers: FL7760 STCS1A The main obvious difference is the first driver requires an external MOSFET, while the second one has the transistor built-in. But I'...
Mark's user avatar
  • 1,235
1 vote
0 answers
101 views

How to select external components for a buck converter?

I design a simple circuit activates fan when processor heats up and then control rotation speed. The fan has a brushless motor with an internal motor controller. So I got the idea to create a buck-...
Qmails's user avatar
  • 21
1 vote
0 answers
621 views

Converting a PWM signal to reduced constant voltage or constant current output

I'm dealing with an existing circuit that was originally designed to dim incandescent and halogen bulbs from 12V using low frequency PWM. This PWM is visible to the naked eye when substituting a 12V ...
Mitchell's user avatar
1 vote
0 answers
420 views

SMD ferrite beads to supress noise when driving mosfets

I design a simple circuit activates fan when processor heats up. I started reading more, and I found a very interesting element a ferrite bead in smd form. It has 0.3ohm resistance, Imax 150mA and ...
Qmails's user avatar
  • 21
1 vote
0 answers
29 views

How to use SPWM with reference voltage waveforms

I'm doing a simulation for an IM drive in MATLAB/Simulink and Plecs(Blockset). My model is a closed loop system and I generate the reference voltage to be applied across the motor. Now I need to ...
Aviostudent's user avatar
1 vote
0 answers
703 views

How to count the number of the generated PWM pulse on ESP32 micropython?

pin=Pin(17,3) pwm=PWM(pin, freq=freq, duty=duty) dir(pwm) # ['__class__', 'deinit', 'duty', 'freq', 'init'] How can I count it? Does micropython provide this ...
CS QGB's user avatar
  • 111
1 vote
0 answers
860 views

Clock Generation with PWM?

I'm designing a device with a central MCU/MPU and two external peripherals. The MCU has an internal clock frequency of 110 MHz. I'd like to use the MCU to generate separate clock outputs for each of ...
scpaulson42's user avatar
1 vote
1 answer
97 views

Getting lower output voltage than expected in 5 level inverter

I am making a 5 level inverter using an Arduino Mega. I am using an IRFZ44N MOSFET for switching and also an MCT2E as a MOSFET driver. The problem I am facing is that I am a getting a lower output ...
ElectronicGuy's user avatar
1 vote
0 answers
163 views

S domain transfer functions of full bridge inverter

I need to design an inverter circuit as in the schema. It is driven by the unipolar PWM method. I have a problem with the circuit. It would be great if anyone can help me. I want to get the s domain ...
Gökhan's user avatar
  • 61
1 vote
0 answers
582 views

3.3V to 15V PWM converter

I have the good old problem of converting a 3.3V logic voltage to a higher voltage. Higher means everything between 12 and 20V. With 15V being used most of the time. The highest frequency I use now is ...
Manuel's user avatar
  • 11
1 vote
0 answers
75 views

Why is the duty cycle much wider than it should be? PIC32MZ & PWM

I'm working with the PIC32MZ2048EFM100 and XC32. I'm using some outputs as PWM signal generators. There are frequencies for which the pwm works fine, but not for others. For example to get 24.4 kHz, I ...
Fabián Romo's user avatar
1 vote
0 answers
178 views

Circuit of a PWM DC motor speed controller for a 12V 10A DC motor

I saw many circuits for this, most of them were using 555 IC, I wanna use a 12V 15A switching power supply for this motor, so I need a high current PWM speed controller but I don't know how to design ...
UnoBianconero's user avatar
1 vote
0 answers
106 views

Solution for EMI on signals in a connector?

I have PWM signal and PSU signals coming from switch mode PSU to our machine. The motor drive boards that run the stepper motors in the machine are located in the PSU. At the moment the outputs to ...
user12844815's user avatar
1 vote
0 answers
605 views

DRV8871 (DC-Motor Driver) extremely reduced output voltage

I am working on a PCB which contains a PCA9685 PWM Driver and four DRV8871 motor drivers. The basic idea of the board is the PCA is controlled by a micro via I2C which then creates a PWM signal sent ...
soup's user avatar
  • 105
1 vote
0 answers
827 views

STM32 - Configure Output Compare Registers on the Fly

since this is my first, feel free to give newbie a feedback :) I have a following setup with my STM32 Nucleo (simplified, ignore the HW behind): a) one input signal acquisition (Square wave, consider ...
aljazjelen's user avatar
1 vote
0 answers
576 views

Generating variable frequency PWM with Attiny85

Bit of Background: I am currently working with my ATX Power Supply and trying to re-purpose it to use its voltage outputs (3.3V, 5V and 12V). But I would like to have a PWM feature with my power ...
G-aura-V's user avatar
  • 1,079
1 vote
1 answer
4k views

Replacing potentiometer with a Hall sensor in PWM DC motor control module

I have a DC motor speed controller (PWM) that uses a 100 kΩ potentiometer to adjust motor speed. I also have an electronic throttle pedal that used a 49E Hall-Effect sensor (+5 V, 0.8-4.2 V signal, 1 ...
wonder.mice's user avatar
1 vote
0 answers
494 views

Switching a relay with a 5V PWM circuit

I have a coil that has the following specs: Coil Resistance: 123 ohms Coil Current: 97.5 mA Switching Voltage: 14 VDC I am trying to use a 5V PWM output from an ECU to switch the relay. I know I ...
SideSwipe PB's user avatar
1 vote
0 answers
100 views

Is it possible to measure pwm load current using opamp based high side current sensing?

I am referring this app note, hope to use as unidirectional current sensing for a PWM load PWM load - load is a resistor, PWM signal - 100Hz, 150V. Load current 18mA Duty 5% (PWM resolution 8 bit) ...
kobi89's user avatar
  • 194
1 vote
0 answers
366 views

Gradually Varying PWM in PSPICE

How do I gradually vary the pulse width in the "VPULSE" model? I tried using parametric sweep but it does not produce the correct waveform or I don't know how to do a parametric sweep in ...
launchin2space's user avatar
1 vote
0 answers
48 views

Raspberry Pi3 - Configure 4 DC motors

I need to feed 4 DC motors of 5V on my Raspberry Pi 3 Model B using PWM (Pulse Width Modulation). Currently, I have the next components: 2 NPM transistors, 1 L293D integrated circuit, diodes, ...
Alberto Bricio's user avatar
1 vote
0 answers
33 views

What design considerations need to be made to accurately measure current flowing through a BLDC motor due to a 20khz PWM control?

My early attempts to incorporate current sensing onboard a BLDC motor drive operating at 20khz involved the MAX40201FAUA differential amplifier (50V/V) IC and a 0.001ohm shunt resistor. Results were, ...
JDD's user avatar
  • 71
1 vote
1 answer
201 views

Conducted Emissions of EV Charging Electronics

I'm building an AC-charging device for electric vehicles (the standard calls it an "ICCPD" or an "In Cable Control and Protective Device") and I'm facing some EMC issues due to the PWM Signal on the ...
Michael Haar's user avatar

15 30 50 per page
1 2 3
4
5
18