Skip to content
eT Community

eT Community

  • Forums
  • What’s New
  • Members
  • Recent Posts
  • Website
Forums
Search
 
Notifications
Clear all

Search result for:  WA 0821 1305 0400 [[Tiga Pillar]] Order EdXRF Spectrometer Near Me Banggai Laut Sulawesi Tengah

 Search Phrase:
 Search Type:
Advanced search options
 Search in Forums:
 Search in date period:

 Sort Search Results by:


Page 2 / 2 Prev
Shift Register Cascading Issues
Theoretical questions
Electronix
1 year ago
5 Relevance
I'm trying to cascade multiple 74HC595 shift registers to expand the number of digital outputs in my project. While one shift register works perfectly on its own, as soon as I add the second (and especially the third), I start getting strange or inconsistent output—some LEDs don’t light up correctly, or they shift out of Order. Is there a timing issue I might be overlooking? Do I need to delay between latching and shifting? Could signal integrity or voltage drop be the issue when chaining several ICs?
View entire post
Answer to: How can servo jitter be reduced in Arduino projects?
Arduino
Neeraj Dev
9 months ago
4 Relevance
Servo jitter in Arduino projects is usually caused by power instability, electrical noise, long signal wires, or software timing conflicts. To reduce it, use a separate and stable power supply for the servo (not the Arduino 5V pin), and connect all grounds together. Add a 100 µF–470 µF electrolytic capacitor Near the servo’s power pins and a small 0.1 µF ceramic capacitor for noise filtering. A 220–470 Ω resistor in series with the signal line can also help. On the software side, avoid writing the same servo position repeatedly, filter noisy input signals, and use small delays or smoothing functions to prevent rapid position changes. These steps usually eliminate most servo jitter problems.
View entire post
Answer to: How does capacitor ESR affect decoupling performance?
Theoretical questions
Amelia
10 months ago
4 Relevance
ESR (Equivalent Series Resistance) plays a big role in how effective a decoupling capacitor is. Low ESR capacitors, like ceramics, are great at handling high-frequency noise and fast transients, which is why they’re used Near IC power pins. However, ultra-low ESR isn’t always ideal—some regulators actually require a certain ESR range for stability, and higher ESR capacitors (like electrolytics) can help by damping resonances and providing bulk decoupling at lower frequencies. The best practice is to use a mix: low ESR ceramics for high-frequency suppression, and higher ESR electrolytics or tantalums for bulk energy storage and damping, while always checking the regulator’s ESR requirements in its datasheet.
View entire post
Answer to: Shift Register Cascading Issues
Theoretical questions
Tech Geek
1 year ago
4 Relevance
This kind of issue is quite common when cascading multiple 74HC595 shift registers. First, make sure you're shifting out the correct number of bits—8 bits per chip—before pulsing the latch pin. Timing can also be a factor, so try adding a small delay (like delayMicroseconds(1)) after the latch pulse. Signal integrity often becomes a problem as more ICs are added, especially with long wires or breadboards—keep connections short, use 100nF decoupling capacitors Near each chip, and consider adding 100Ω series resistors on data and clock lines. Also, check that all chips share a common ground and that your power supply can handle the total current draw. Lastly, ensure your shiftOut() direction (MSBFIRST or LSBFIRST) matches your wiring. These steps usually solve most inconsistent behavior when chaining multiple 74HC595s.
View entire post
Answer to: How to calculate decoupling capacitor values?
Theoretical questions
Neeraj Dev
1 year ago
4 Relevance
Decoupling capacitors are essential for stabilizing the power supply and suppressing noise in microcontroller and digital circuits. A common starting point is placing a 100 nF ceramic capacitor (X7R type recommended) close to the Vcc and GND pins of each IC to handle high-frequency transients. To support sudden current demands and filter lower-frequency noise, it's also good practice to add a bulk capacitor—typically 1 µF to 10 µF—near the microcontroller or groups of ICs. The exact values depend on several factors, including the switching speed of the ICs, current consumption, and the quality of the PCB layout. Faster ICs may require additional smaller capacitors like 10 nF or 1 nF in parallel with the 100 nF to cover a broader frequency range. High-current circuits may benefit from larger bulk capacitors up to 47 µF. Proper placement is critical—capacitors should be located as close as possible to the power pins, with short, direct traces. Using a mix of capacitor values in parallel helps improve overall decoupling performance. While 100 nF is a solid default, evaluating layout and load conditions can help you fine-tune your choices for a more robust and reliable design.
View entire post
Answer to: Good Arduino IoT projects for a beginner?
Arduino
Jignesh
1 year ago
4 Relevance
... thresholds + cloud alerts. 2. Smart Plant Mood Monitor Combine a soil moisture sensor, light sensor, and temp sensor. Based on readings, display your plant’s "mood" using emojis on an OLED or in a mobile app. Could also send WAtering reminders if the soil is dry. 3. Wi-Fi Jammer Detector With just an ESP8266, you can scan Wi-Fi channels and detect when there's suspicious interference or sudden drops in signal — send an alert if something looks off. Simple but cool networking concept. 4. IoT Trash Bin Level Monitor Use an ultrasonic sensor to Measure h ...
View entire post
Answer to: How to Identify the Neutral Wire Using a Multimeter?
Equipments
Sebastian
2 years ago
4 Relevance
To identifying the Neutral Wire Using a Multimeter you have to follow the steps below. Set Up the Multimeter: Switch your multimeter to an AC voltage range above your circuit’s expected voltage. Connect the Probes: Insert the black probe into the "COM" port and the red probe into the "V" port on the multimeter. Test Each Wire: Touch the black probe to a known ground (like a Metal box or a ground wire). Use the red probe to test each wire individually: A high voltage reading indicates a live wire. A Near-zero reading (under 1V) usually points to the neutral wire. This Method should reliably help you find the neutral wire. Remember to always turn off the power before making any connections, and re-energize only for testing.
View entire post
Answer to: How does PID control work in automation?
Theoretical questions
Tech Geek
1 year ago
4 Relevance
PID (Proportional-Integral-Derivative) control is a fundamental feedback Mechanism used in automation to maintain the stability and accuracy of a system. It continuously calculates an error value as the difference between a desired setpoint and a Measured process variable, then applies corrections based on three terms: proportional, integral, and derivative. The proportional term (P) reacts to the current error. It produces an output that is directly proportional to the magnitude of the error. The larger the error, the stronger the corrective response. However, relying on proportional control alone often leaves a steady-state error, where the system stabilizes Near the setpoint but not exactly at it. The integral term (I) addresses this by considering the accumulation of past errors. It integrates the error over time and adds a correction based on the sum of those errors. This helps eliminate the steady-state error and brings the output closer to the exact setpoint. However, too much integral action can cause the system to become unstable and oscillate. The derivative term (D) predicts future error by looking at the rate of change of the error. It provides a damping effect by slowing the response as the system approaches the setpoint, reducing overshoot and helping stabilize the system. A common example of PID control is in temperature regulation, such as in an oven. If the oven is set to maintain 200°C, the PID controller compares the actual temperature with the setpoint. If the temperature is too low (error), the proportional term increases the heater output. If the temperature has been low for a while, the integral term adds more power. As the temperature rises quickly, the derivative term kicks in to prevent overshooting beyond 200°C. PID controllers are widely used in industrial automation for applications like motor speed control, robotic arm positioning, pressure control in chemical processes, and flight control systems in drones. Their ability to provide precise and stable control makes them essential in systems where accuracy and reliability are critical.
View entire post
Page 2 / 2 Prev

Forum Search

Recent Posts

  • RE: Beginner Arduino Course —Any Recommendations?

    @rahav When I started learning Arduino, I realized that...

    By playwithcircuit , 3 weeks ago

  • Admin

    RE: esp32 diagram connection

    @wmughal What do you want to achieve here exactly?

    By Admin , 4 months ago

  • DIY an RF power meter Based on STM32F103 + MAX4003

    As we all know, Radio frequency (RF) is a very importan...

    By anselbevier , 4 months ago

  • esp32 diagram connection

    i never use esp32 before i get diagram from claude i wa...

    By wmughal , 5 months ago

  • Admin

    RE: Motor driver not working properly

    @noochee Can you please share more details? Circuit dia...

    By Admin , 5 months ago

  • Motor driver not working properly

    I built an obstacle avoiding robotic car using Arduino,...

    By Noochee , 5 months ago

  • Answer to: Bluetooth Speaker won't turn on

    Translator Sorry, this i...

    By servitec , 7 months ago

  • Bluetooth Speaker won't turn on

    I know is not probably the best place for a newbie, the...

    By servitec , 7 months ago

  • Answer to: Why Fluke multimeters are so expensive?

    Totally agree with the points above. In my experience, ...

    By maryjlee , 9 months ago

Share:
Forum Information
Recent Posts
Unread Posts
Tags
  • 9 Forums
  • 280 Topics
  • 747 Posts
  • 13 Online
  • 292 Members
Our newest member: jmadulp
Latest Post: Beginner Arduino Course —Any Recommendations?
Forum Icons: Forum contains no unread posts Forum contains unread posts
Topic Icons: Not Replied Replied Active Hot Sticky Unapproved Solved Private Closed

 Powered by wpForo version 3.1.4

© 2026 eT Community • Built with GeneratePress