1Which technique is commonly used to control the brightness of an LED with a NodeMCU?
controlling the brightness of led
Easy
A.Digital sound recording
B.Pulse Width Modulation
C.Serial data transfer
D.Analog temperature sensing
Correct Answer: Pulse Width Modulation
Explanation:
PWM controls LED brightness by rapidly switching the LED on and off.
Incorrect! Try again.
2What happens when the PWM duty cycle of an LED is increased?
controlling the brightness of led
Easy
A.The LED changes color
B.The LED becomes brighter
C.The LED stops receiving power
D.The LED becomes dimmer
Correct Answer: The LED becomes brighter
Explanation:
A higher duty cycle keeps the LED on for a greater portion of each cycle, making it appear brighter.
Incorrect! Try again.
3What does a PWM duty cycle represent?
controlling the brightness of led
Easy
A.The supply voltage value
B.The sensor response time
C.The wire length
D.The on-time percentage
Correct Answer: The on-time percentage
Explanation:
The duty cycle is the percentage of one PWM cycle during which the signal remains high or on.
Incorrect! Try again.
4Which duty cycle generally produces the dimmest LED in a PWM circuit?
controlling the brightness of led
Easy
A.0%
B.25%
C.100%
D.50%
Correct Answer: 0%
Explanation:
A duty cycle of 0% keeps the PWM output off, so the LED remains dim or off.
Incorrect! Try again.
5Which duty cycle generally produces the brightest LED in a PWM circuit?
controlling the brightness of led
Easy
A.60%
B.0%
C.20%
D.100%
Correct Answer: 100%
Explanation:
A duty cycle of 100% keeps the output on continuously, producing maximum brightness.
Incorrect! Try again.
6Why can an LED appear to glow steadily when controlled by PWM?
controlling the brightness of led
Easy
A.Human vision averages rapid changes
B.The LED stores digital data
C.The NodeMCU removes all switching
D.The resistor creates light
Correct Answer: Human vision averages rapid changes
Explanation:
PWM switches quickly, and human vision perceives the average light level as steady brightness.
Incorrect! Try again.
7What component is commonly used to limit current through an LED?
controlling the brightness of led
Easy
A.Push button
B.Relay
C.Buzzer
D.Resistor
Correct Answer: Resistor
Explanation:
A resistor limits current and helps protect the LED from excessive current.
Incorrect! Try again.
8What type of motor is commonly positioned using PWM control?
servo motor control using pwm
Easy
A.Stepper transformer
B.Induction motor
C.Universal motor
D.Servo motor
Correct Answer: Servo motor
Explanation:
A servo motor uses PWM signal pulses to move its shaft to a selected position.
Incorrect! Try again.
9What does the pulse width usually determine in a hobby servo motor?
servo motor control using pwm
Easy
A.Wire resistance
B.Battery capacity
C.Shaft position
D.Motor color
Correct Answer: Shaft position
Explanation:
The width of the control pulse tells the servo which angular position to move to.
Incorrect! Try again.
10Which signal feature is most important for selecting a servo angle?
servo motor control using pwm
Easy
A.Connector shape
B.Board temperature
C.Wire insulation
D.Pulse width
Correct Answer: Pulse width
Explanation:
The servo interprets the control pulse width as a target position.
Incorrect! Try again.
11A typical hobby servo can commonly rotate through which range?
servo motor control using pwm
Easy
A.About 3600 degrees
B.About 20 degrees
C.About 5 degrees
D.About 180 degrees
Correct Answer: About 180 degrees
Explanation:
Many standard hobby servos provide approximately 180 degrees of controlled movement.
Incorrect! Try again.
12Which part of a servo motor provides feedback about its shaft position?
servo motor control using pwm
Easy
A.Power switch
B.Heat sink
C.Position sensor
D.Fuse wire
Correct Answer: Position sensor
Explanation:
A position sensor inside the servo helps the controller detect and maintain the shaft angle.
Incorrect! Try again.
13What is the main purpose of the PWM signal sent to a servo?
servo motor control using pwm
Easy
A.To detect light
B.To select an angle
C.To measure humidity
D.To store a program
Correct Answer: To select an angle
Explanation:
The PWM control signal instructs the servo to move to a particular angular position.
Incorrect! Try again.
14Which connection is usually required for a servo motor to operate?
servo motor control using pwm
Easy
A.Only a signal wire
B.Power and an antenna
C.Power, ground, and signal
D.Only two ground wires
Correct Answer: Power, ground, and signal
Explanation:
A servo normally needs a power connection, a ground connection, and a control signal connection.
Incorrect! Try again.
15What may happen if a servo motor does not receive enough power?
servo motor control using pwm
Easy
A.It always rotates faster
B.It increases Wi-Fi range
C.It may move irregularly
D.It changes the PWM frequency automatically
Correct Answer: It may move irregularly
Explanation:
Insufficient power can cause a servo to jitter, stop, or move unpredictably.
Incorrect! Try again.
16What does PWM control in a DC motor?
dc motor control using pwm
Easy
A.Motor paint color
B.Cable length
C.Wi-Fi password
D.Motor speed
Correct Answer: Motor speed
Explanation:
PWM changes the average voltage supplied to a DC motor and therefore controls its speed.
Incorrect! Try again.
17What is the effect of increasing the PWM duty cycle on a DC motor?
dc motor control using pwm
Easy
A.The motor becomes a sensor
B.The motor loses its shaft
C.The motor usually speeds up
D.The motor always reverses
Correct Answer: The motor usually speeds up
Explanation:
Increasing the duty cycle increases the motor's average power, which usually increases its speed.
Incorrect! Try again.
18Which component is commonly used to drive a DC motor from a NodeMCU?
dc motor control using pwm
Easy
A.Light sensor
B.Microphone
C.Motor driver
D.Voltage meter
Correct Answer: Motor driver
Explanation:
A motor driver supplies the motor current and protects the NodeMCU from the motor load.
Incorrect! Try again.
19Why should a DC motor usually not be connected directly to a NodeMCU pin?
dc motor control using pwm
Easy
A.It cannot use any electricity
B.It may draw too much current
C.It only works with light
D.It has no moving parts
Correct Answer: It may draw too much current
Explanation:
A DC motor can require more current than a NodeMCU pin can safely provide.
Incorrect! Try again.
20Which device can be used to reverse the direction of a DC motor?
dc motor control using pwm
Easy
A.Temperature probe
B.H-bridge driver
C.USB cable
D.LED resistor
Correct Answer: H-bridge driver
Explanation:
An H-bridge reverses the polarity applied to the motor, allowing it to rotate in either direction.
Incorrect! Try again.
21On an ESP8266-based NodeMCU using the default analogWrite() range of 0 to 1023, which value most closely produces 75% LED brightness by duty cycle?
controlling the brightness of led
Medium
A.256
B.512
C.767
D.1023
Correct Answer: 767
Explanation:
A 75% duty cycle requires approximately .
Incorrect! Try again.
22An LED connected to a NodeMCU PWM pin appears dim even when analogWrite(pin, 1023) is used. Which hardware issue is the most likely cause?
controlling the brightness of led
Medium
A.The series resistor is too large
B.The GPIO is configured as input
C.The PWM frequency is too low
D.The duty cycle is exactly 50%
Correct Answer: The series resistor is too large
Explanation:
At maximum duty cycle, an excessively large series resistor can still limit LED current and reduce brightness.
Incorrect! Try again.
23A NodeMCU drives an active-low LED, so the LED turns on when the GPIO output is low. Which PWM value gives approximately 25% visible on-time with a range of 0 to 1023?
controlling the brightness of led
Medium
A.767
B.512
C.256
D.1023
Correct Answer: 767
Explanation:
For an active-low LED, visible on-time is the inverse of the PWM high duty cycle. A 75% high duty cycle, about 767, gives 25% low on-time.
Incorrect! Try again.
24An LED fade loop increases the PWM value by 20 every 10 ms, starting at 0 and stopping near 1000. Approximately how long does one fade-in take?
controlling the brightness of led
Medium
A.0.50 s
B.0.25 s
C.2.00 s
D.1.00 s
Correct Answer: 0.50 s
Explanation:
There are about updates, and ms equals 500 ms or 0.50 s.
Incorrect! Try again.
25Two LEDs are driven with the same PWM duty cycle, but one uses a 220 resistor and the other a 1 k resistor. Assuming identical LEDs, what is the expected result?
controlling the brightness of led
Medium
A.The 1 k LED is brighter
B.Both LEDs remain fully off
C.The 220 LED is brighter
D.Both LEDs have equal brightness
Correct Answer: The 220 LED is brighter
Explanation:
The smaller resistor permits more LED current during each PWM on-period, so its average light output is generally higher.
Incorrect! Try again.
26A dimmable LED visibly flickers when PWM is generated by a slow software loop. Which change most directly reduces the flicker while preserving the intended brightness?
controlling the brightness of led
Medium
A.Decrease the GPIO voltage
B.Reverse the LED polarity
C.Increase the PWM frequency
D.Increase the series resistance
Correct Answer: Increase the PWM frequency
Explanation:
A higher PWM frequency makes individual on-off cycles less perceptible while the duty cycle continues to control average brightness.
Incorrect! Try again.
27A program maps an 8-bit brightness command from 0 to 255 into the NodeMCU PWM range 0 to 1023. Which expression provides the most appropriate linear mapping?
controlling the brightness of led
Medium
A.value - 255 / 1023
B.value * 1023 / 255
C.value + 1023 / 255
D.value * 255 / 1023
Correct Answer: value * 1023 / 255
Explanation:
Scaling by converts the full 8-bit input range into the full 10-bit PWM range.
Incorrect! Try again.
28A standard servo expects a 20 ms PWM period. What frequency should the NodeMCU generate?
servo motor control using pwm
Medium
A.50 Hz
B.100 Hz
C.25 Hz
D.200 Hz
Correct Answer: 50 Hz
Explanation:
Frequency is the reciprocal of period: Hz.
Incorrect! Try again.
29A servo uses pulse widths from 1.0 ms at 0 degrees to 2.0 ms at 180 degrees. Which pulse width should approximately command 90 degrees?
servo motor control using pwm
Medium
A.2.0 ms
B.1.5 ms
C.1.0 ms
D.1.25 ms
Correct Answer: 1.5 ms
Explanation:
For a linear mapping, 90 degrees is the midpoint of the range, corresponding to a 1.5 ms pulse.
Incorrect! Try again.
30At 50 Hz, what duty cycle corresponds to a 2 ms servo control pulse?
servo motor control using pwm
Medium
A.2.5%
B.20%
C.10%
D.5%
Correct Answer: 10%
Explanation:
The 50 Hz period is 20 ms, so the duty cycle is .
Incorrect! Try again.
31A servo jitters and the NodeMCU sometimes resets when the servo starts moving. Which modification is most appropriate?
servo motor control using pwm
Medium
A.Use a separate regulated servo supply with common ground
B.Remove the ground connection from the servo
C.Increase the command pulse to 20 ms
D.Power the servo directly from a GPIO pin
Correct Answer: Use a separate regulated servo supply with common ground
Explanation:
Servo current surges can disturb the NodeMCU supply. A suitable external supply with a shared ground provides stable power and a valid control reference.
Incorrect! Try again.
32A linear servo mapping uses 1 ms for 0 degrees and 2 ms for 180 degrees. What pulse width should be used for 45 degrees?
servo motor control using pwm
Medium
A.1.50 ms
B.1.75 ms
C.1.25 ms
D.1.10 ms
Correct Answer: 1.25 ms
Explanation:
Since 45 degrees is one quarter of 180 degrees, add one quarter of the 1 ms pulse-width span to 1 ms, giving 1.25 ms.
Incorrect! Try again.
33A servo holds the correct angle but continuously buzzes under load. Which explanation is most likely?
servo motor control using pwm
Medium
A.The pulse period has disabled the motor
B.The GPIO has exceeded its flash capacity
C.The servo is correcting position against the load
D.The PWM signal has become a DC voltage
Correct Answer: The servo is correcting position against the load
Explanation:
A positional servo repeatedly corrects angular error. Under mechanical load, these corrections can produce audible buzzing.
Incorrect! Try again.
34A program sends valid servo pulses but then blocks for 500 ms before generating the next pulse in software. What behavior is most likely?
servo motor control using pwm
Medium
A.The servo direction reverses once
B.The servo speed doubles steadily
C.The servo supply rises to 12 V
D.The servo position becomes unstable
Correct Answer: The servo position becomes unstable
Explanation:
A servo normally requires control pulses about every 20 ms. Long gaps in software-generated pulses can cause poor holding or unstable movement.
Incorrect! Try again.
35A NodeMCU must control the speed of a 6 V DC motor that draws 500 mA. Why should the motor not be connected directly to a GPIO pin?
dc motor control using pwm
Medium
A.The motor requires a digital input pin
B.The motor current exceeds the GPIO capability
C.The GPIO always outputs an AC waveform
D.The GPIO frequency is fixed at zero
Correct Answer: The motor current exceeds the GPIO capability
Explanation:
A GPIO cannot safely supply the motor's current. A transistor or motor driver must switch power from a suitable external supply.
Incorrect! Try again.
36A DC motor is driven through a MOSFET at a 40% PWM duty cycle from a 9 V supply. Ignoring losses, what average motor voltage does this approximate?
dc motor control using pwm
Medium
A.3.6 V
B.5.4 V
C.9.0 V
D.2.7 V
Correct Answer: 3.6 V
Explanation:
The approximate average voltage is V.
Incorrect! Try again.
37What is the main purpose of a flyback diode connected across a DC motor controlled by a transistor?
dc motor control using pwm
Medium
A.Measure the motor current
B.Clamp the inductive voltage spike
C.Increase the PWM duty cycle
D.Reverse the motor direction
Correct Answer: Clamp the inductive voltage spike
Explanation:
When motor current is switched off, the winding generates a high reverse voltage. The flyback diode provides a current path and protects the transistor.
Incorrect! Try again.
38A motor does not start at 15% PWM duty cycle but runs after briefly applying 60%. What is the best control strategy for reliable low-speed startup?
dc motor control using pwm
Medium
A.Disconnect the flyback protection diode
B.Replace PWM with a floating input
C.Apply a short high-duty startup pulse
D.Lower the supply voltage during startup
Correct Answer: Apply a short high-duty startup pulse
Explanation:
A motor needs extra starting torque to overcome static friction. A brief higher duty cycle can start rotation before reducing to the desired value.
Incorrect! Try again.
39A single low-side MOSFET provides PWM speed control for a DC motor. What additional circuit is required to control both forward and reverse rotation?
dc motor control using pwm
Medium
A.A pull-up resistor
B.A voltage divider
C.An H-bridge driver
D.A rectifier filter
Correct Answer: An H-bridge driver
Explanation:
An H-bridge reverses the polarity applied to the motor, allowing direction control while PWM regulates speed.
Incorrect! Try again.
40A NodeMCU and an external motor driver use separate power supplies, but the PWM input behaves unpredictably. Which connection is most likely missing?
dc motor control using pwm
Medium
A.A common ground connection
B.A reverse-biased LED
C.A series motor capacitor
D.A second flyback diode
Correct Answer: A common ground connection
Explanation:
The driver must share a reference ground with the NodeMCU so it can interpret the PWM signal voltage correctly.
Incorrect! Try again.
41An LED is driven from an ESP8266 PWM pin through a resistor. The application uses a 12-bit brightness value from 0 to 4095, while analogWriteRange(1023) is active. Which conversion preserves the intended brightness ratio most accurately?
controlling the brightness of led
Hard
A.Use d = b / 1023 and write d * 4095
B.Use d = b / 4096 and write d * 1024
C.Use d = b / 4095 and write \operatorname{round}(d \times 1023)
D.Use d = b / 4095 and write d * 1023
Correct Answer: Use d = b / 4095 and write \operatorname{round}(d \times 1023)
Explanation:
The input ratio is , and the configured output range is 0 to 1023. Rounding maps the ratio to the nearest available PWM count without changing the intended scale.
Incorrect! Try again.
42A status LED must appear equally bright at PWM codes 100 and 200 when controlled by a slider, but the second code currently looks much brighter. Which change best addresses the perceptual mismatch while retaining 10-bit PWM resolution?
controlling the brightness of led
Hard
A.Invert the PWM output before applying the slider value
B.Apply a perceptual gamma correction to the slider value
C.Replace PWM with a lower-frequency square wave
D.Increase the series resistor for every slider position
Correct Answer: Apply a perceptual gamma correction to the slider value
Explanation:
Human brightness perception is nonlinear. A gamma or empirically calibrated mapping converts perceived brightness commands into electrical duty cycles more effectively than changing frequency or resistance.
Incorrect! Try again.
43An LED is connected from 3.3 V through a resistor to an NPN transistor collector, with the emitter at ground. The transistor is driven by an active-high PWM signal. Which software behavior produces maximum LED brightness when the circuit is operating correctly?
controlling the brightness of led
Hard
A.Write duty 0 because the transistor is a low-side switch
B.Write duty 1023 only when the LED is connected to ground
C.Write duty 1023 because the transistor is active high
D.Write duty 512 because transistor switching is always inverted
Correct Answer: Write duty 1023 because the transistor is active high
Explanation:
A high PWM level turns on the NPN transistor and allows current through the LED. Therefore, the maximum duty cycle produces the greatest average LED current.
Incorrect! Try again.
44A 3.3 V GPIO drives an LED whose forward voltage is 2.0 V at 10 mA. Ignoring transistor losses, what resistor value is closest to the required average-current limit when the LED is continuously on?
controlling the brightness of led
Hard
A.
B.
C.
D.
Correct Answer:
Explanation:
The resistor voltage is . Thus .
Incorrect! Try again.
45A camera records visible LED flicker even though the LED appears steady to the eye. Which modification is most appropriate if the ESP8266 and LED switching hardware can support it?
controlling the brightness of led
Hard
A.Increase PWM frequency above the camera sampling interaction
B.Replace the current-limiting resistor with a capacitor
C.Use a duty cycle of exactly 50 percent
D.Reduce PWM frequency below 100 Hz
Correct Answer: Increase PWM frequency above the camera sampling interaction
Explanation:
Cameras can expose periodic PWM modulation through rolling-shutter sampling. Raising the PWM frequency reduces visible banding and flicker when the switching hardware remains suitable.
Incorrect! Try again.
46A firmware update changes analogWriteRange() from 1023 to 255, but the application still sends values up to 1023. What is the most likely result for values above 255?
controlling the brightness of led
Hard
A.They produce a duty cycle above 100 percent
B.They switch the pin from PWM mode to digital mode
C.They are automatically divided by four
D.They are clipped or constrained to the configured maximum
Correct Answer: They are clipped or constrained to the configured maximum
Explanation:
The configured PWM range defines the valid duty interval. Values above its maximum cannot represent additional duty and are typically constrained to the maximum.
Incorrect! Try again.
47Two PWM-controlled LEDs share the same ESP8266 supply. At high duty cycles, both become dimmer and Wi-Fi resets occur. Which hardware change most directly addresses the underlying power problem?
controlling the brightness of led
Hard
A.Increase the PWM duty values beyond the configured range
B.Connect both LED cathodes to GPIO pins
C.Replace PWM with faster serial communication
D.Add adequate supply decoupling and a separate current-capable LED supply
Correct Answer: Add adequate supply decoupling and a separate current-capable LED supply
Explanation:
The symptoms indicate supply droop or noise from LED current and Wi-Fi transients. Decoupling and a properly rated supply reduce voltage collapse while keeping GPIO current within safe limits.
Incorrect! Try again.
48A standard servo expects a 50 Hz frame and a 1.0 ms to 2.0 ms control pulse. With a 10-bit PWM range of 0 to 1023, which duty-count interval most closely represents the servo's usable command range?
servo motor control using pwm
Hard
A.Counts 25 to 51
B.Counts 1 to 2
C.Counts 512 to 1023
D.Counts 51 to 102
Correct Answer: Counts 51 to 102
Explanation:
At 50 Hz, the frame period is . The duty counts are approximately and .
Incorrect! Try again.
49A servo is commanded to 90 degrees using a 1.5 ms pulse, but it moves to an endpoint. The measured frame period is 20 ms and the pulse is actually 15 ms. Which diagnosis is most likely?
servo motor control using pwm
Hard
A.The PWM frequency is too low for a servo
B.The servo requires a 15 ms neutral pulse
C.The servo interprets 50 Hz as a digital high signal
D.The pulse-width calculation confused milliseconds with microseconds
Correct Answer: The pulse-width calculation confused milliseconds with microseconds
Explanation:
A 15 ms pulse occupies 75 percent of a 20 ms frame, while a neutral command is typically about 1.5 ms, or 7.5 percent. The tenfold error is consistent with unit confusion.
Incorrect! Try again.
50A servo is powered from a separate 5 V supply, while its signal is generated by the NodeMCU. The servo responds erratically. Which wiring correction is essential?
servo motor control using pwm
Hard
A.Power the servo through the ESP8266 3.3 V regulator
B.Remove the servo supply ground to avoid a ground loop
C.Connect the servo signal to the 5 V rail
D.Connect the separate supply ground to NodeMCU ground
Correct Answer: Connect the separate supply ground to NodeMCU ground
Explanation:
The signal voltage is interpreted relative to ground. A common ground establishes a valid reference between the NodeMCU signal and the servo supply.
Incorrect! Try again.
51A servo accepts pulses from 0.5 ms to 2.5 ms, but the mechanical linkage safely permits only 20 degrees to 160 degrees. Which control strategy best prevents damaging commands?
servo motor control using pwm
Hard
A.Clamp the requested angle, then map it to the calibrated pulse limits
B.Use a constant 1.5 ms pulse for all requested angles
C.Increase the frame frequency until the linkage stops
D.Map the full input range directly to 0.5 ms to 2.5 ms
Correct Answer: Clamp the requested angle, then map it to the calibrated pulse limits
Explanation:
The software should constrain the logical angle to the safe mechanical interval and use calibrated pulse endpoints. This prevents out-of-range commands from reaching the linkage.
Incorrect! Try again.
52A servo's neutral position changes after replacing its power adapter, although the PWM pulse width is unchanged. Which explanation is most technically plausible?
servo motor control using pwm
Hard
A.A higher supply voltage reverses the PWM duty cycle
B.The new supply changed the signal frequency automatically
C.Servo position is determined only by supply voltage
D.Voltage noise or ground reference changes affect signal interpretation or servo electronics
Correct Answer: Voltage noise or ground reference changes affect signal interpretation or servo electronics
Explanation:
The command is pulse-width based, but poor supply regulation, ground offset, or electrical noise can alter the recognized signal or the servo's internal behavior.
Incorrect! Try again.
53A servo library and an LED PWM channel are enabled together, and the LED periodically changes brightness whenever the servo moves. What is the best corrective design choice?
servo motor control using pwm
Hard
A.Use a timer/resource arrangement supported by the platform or move one function to another controller
B.Assign both outputs to the same timer channel
C.Drive the servo with a constant logic-high output
D.Increase the LED duty cycle to compensate for interference
Correct Answer: Use a timer/resource arrangement supported by the platform or move one function to another controller
Explanation:
Servo timing and LED PWM may contend for timer resources. Separating compatible timer channels or delegating one waveform avoids unintended reconfiguration.
Incorrect! Try again.
54A servo command is updated every 1 ms with a new pulse width, but the motor jitters badly near its target. Which software improvement is most appropriate?
servo motor control using pwm
Hard
A.Change the signal from PWM to a one-time pulse
B.Alternate between the two endpoint pulse widths
C.Set every pulse to the maximum width
D.Apply a small deadband and rate-limit or filter command updates
Correct Answer: Apply a small deadband and rate-limit or filter command updates
Explanation:
High-rate noisy updates can cause continual corrective motion. A calibrated deadband plus filtered or rate-limited commands reduces jitter without disabling position control.
Incorrect! Try again.
55A NodeMCU pin is connected directly to a 250 mA DC motor. The firmware sets 50 percent PWM, but the motor does not start and the board resets. What is the primary design error?
dc motor control using pwm
Hard
A.The ESP8266 cannot generate a 50 percent duty cycle
B.The PWM duty cycle is mathematically invalid
C.The motor requires a servo pulse instead of PWM
D.The GPIO is being used as a power driver for an inductive load
Correct Answer: The GPIO is being used as a power driver for an inductive load
Explanation:
An ESP8266 GPIO cannot safely supply motor current or absorb inductive transients. A transistor or MOSFET driver, flyback protection, suitable supply, and common ground are required.
Incorrect! Try again.
56A low-side N-channel MOSFET switches a brushed DC motor from a 12 V supply. Which protection arrangement is correct for suppressing the motor's inductive turn-off transient?
dc motor control using pwm
Hard
A.Place a resistor from the motor terminal directly to the GPIO
B.Place a flyback diode in series with the motor, cathode at ground
C.Place a flyback diode across the motor, cathode at 12 V
D.Place an LED across the MOSFET, anode at the drain
Correct Answer: Place a flyback diode across the motor, cathode at 12 V
Explanation:
When the MOSFET turns off, motor current must continue through a recirculation path. The diode across the motor is normally reverse-biased and conducts the transient with its cathode toward the positive supply.
Incorrect! Try again.
57A DC motor stalls at low duty cycles but runs once manually spun. Which firmware change can improve starting without increasing the steady-state commanded speed excessively?
dc motor control using pwm
Hard
A.Decrease the supply voltage during startup
B.Replace the PWM signal with a permanent logic-low signal
C.Apply a brief higher-duty startup boost, then return to the requested duty
D.Use a lower duty cycle for the first several seconds
Correct Answer: Apply a brief higher-duty startup boost, then return to the requested duty
Explanation:
Static friction and startup current requirements can exceed what a low duty cycle provides. A short boost supplies starting torque, after which the controller can use the lower steady-state duty.
Incorrect! Try again.
58A motor driver uses an H-bridge. The firmware changes direction while the PWM enable remains high, causing a large current spike. Which control sequence is safest?
dc motor control using pwm
Hard
A.Increase PWM frequency while changing direction
B.Set PWM to zero, allow a brief dead time, change direction, then ramp duty
C.Change direction and enable both bridge legs simultaneously
D.Reverse direction immediately at maximum duty
Correct Answer: Set PWM to zero, allow a brief dead time, change direction, then ramp duty
Explanation:
Removing drive torque before changing polarity limits regenerative and shoot-through currents. Dead time and a controlled duty ramp further reduce electrical and mechanical stress.
Incorrect! Try again.
59A motor's speed drops under load even though the PWM duty cycle is unchanged. Which conclusion and improvement are most appropriate for a speed-regulated system?
dc motor control using pwm
Hard
A.The motor needs servo pulses; change the frame period to 20 ms
B.The PWM signal is necessarily inverted; swap the supply terminals
C.The motor is load-sensitive; add feedback and a controller that adjusts duty
D.The motor is open circuit; reduce the duty cycle
Correct Answer: The motor is load-sensitive; add feedback and a controller that adjusts duty
Explanation:
Open-loop PWM controls average applied voltage, not guaranteed speed. An encoder or other speed sensor enables feedback control that increases duty when load causes the speed to fall.
Incorrect! Try again.
60A motor driver datasheet specifies a minimum PWM frequency of 20 kHz for inaudible operation, while the selected driver has a maximum switching frequency of 30 kHz. Which setting is valid?
dc motor control using pwm
Hard
A.40 kHz, because higher frequency always reduces losses
B.1 kHz, because motor inductance removes all audible effects
C.10 kHz, because lower frequency always provides more torque
D.20 kHz, because it satisfies both stated limits
Correct Answer: 20 kHz, because it satisfies both stated limits
Explanation:
The selected frequency must be at least 20 kHz and no greater than 30 kHz. A 20 kHz setting lies within the specified operating interval.
Incorrect! Try again.
Did this save you a night before the exam?
LPU Notes is free, and it stays free. Ads cover part of the server bill.
The rest comes out of a student's own pocket: the domain, the storage,
and keeping the site up through the weeks everyone needs it at once.
The payment button didn't load. An ad blocker or a filtered network is the usual reason.
to try again.
Nothing here is ever locked, and nothing unlocks. Chip in only if it was worth it.
What it pays for →