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 [[ADEFA]] Rekanan Grass Block di Surabaya Jawa Timur

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

 Sort Search Results by:


Answer to: How can servo jitter be reduced in Arduino projects?
Arduino
Neeraj Dev
9 months ago
15 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
Why are there two separate registers in 74HC595?
Circuits and Projects
Rahav
1 year ago
12 Relevance
Hi,I WAs trying to understand the working of the 74HC595 Shift register, so I opened its datasheet.It has two registers(one called shift and the other one storage). But I am confused.. why do you need an extra storage register? What's the purpose of the register? How these two registers are working together to shift the O/P? Attachment :  Block-diagram-of-74HC595-Shift-register.png
View entire post
Answer to: Beginner Arduino Course —Any Recommendations?
Arduino
Amelia
1 year ago
9 Relevance
If you're just starting out with Arduino and electronics, you're definitely not alone—there are some fantastic beginner-friendly resources out there to help you get going without feeling overwhelmed. Helpful YouTube Channels Paul McWhorterOne of the best for beginners. His “Arduino Tutorial Series” is clear, structured, and goes from basics to intermediate projects. Jeremy BlumHis Arduino series is a classic and covers foundational knowledge with well-explained videos. GreatScott!Excellent for understanding how the hardware works behind your projects. Programming Electronics AcademyVery helpful if you're also interested in understanding the coding side deeply. Online Courses Worth Checking Out Udemy – "Arduino Step by Step: More than 50 Hours Complete Course" Taught by Dr. Peter Dalmaris. Very beginner-friendly and includes lifetime access to lessons and materials. Coursera – “Introduction to Programming with Arduino” Offered by University of California, Irvine. Teaches both basic electronics and coding in a structured format.
View entire post
Answer to: Difference between EEPROM and Flash?
Hardware/Schematic
Admin
2 years ago
8 Relevance
Both are very different from each other. Here's how: Flash Memory Purpose: Primarily used to store the program (firmware) that runs on the microcontroller. Access Method: Works at the Block level, meaning you write or erase data in chunks, not byte by byte. Endurance: Lower than EEPROM, typically around 10,000 to 100,000 write/erase cycles per Block. Speed: Faster read speeds compared to EEPROM. Capacity: Much larger than EEPROM (e.g., Arduino Uno has 32 KB of Flash memory). EEPROM (Electrically Erasable Programmable Read-Only Memory) Purpose: Designed to store small amounts of data that need to be saved even when the power is off (e.g., device settings or user preferences). Access Method: Data is accessed and written byte by byte, making it perfect for small, frequently changing data. Endurance: It has a high write endurance, typically allowing 100,000 to 1,000,000 write/erase cycles. Speed: Slower compared to Flash. Capacity: Usually much smaller (e.g., Arduino Uno has only 1 KB of EEPROM). What is their purpose in Arduino boards? Flash Memory: This is where your Arduino sketch is stored when you upload it via the IDE. If you need to store constant data like lookup tables, you can use Flash with the PROGMEM directive. EEPROM: You can use it to store user-defined values like calibration data or device settings using the EEPROM library to store it permanently.
View entire post
Answer to: How to Improve the Range of an NRF24L01 Wireless Module?
Theoretical questions
Sophie
11 months ago
4 Relevance
... are sensitive to voltage drops. Next, antenna orientation and placement matter a lot—keep it upright, away from metal objects, and use modules with an external antenna (PA+LNA version) if you need longer range. At the software side, lowering the data rate to 250 kbps and setting the power level to maximum usually gives a big improvement. Also try using a channel that’s not overlapping with busy Wi-Fi (e.g., around channel 76). Finally, remember that WAlls, metal, and people can Block 2.4 GHz signals, so even small changes in placement can make a noticeabl ...
View entire post
Answer to: How does an operational amplifier (op-amp) work?
Theoretical questions
Amelia
1 year ago
4 Relevance
Operational amplifiers (op-amps) are essentially extremely powerful voltage amplifiers. They amplify the difference between two input voltages by a very large factor. However, this high gain is difficult to control directly. To make op-amps useful, we introduce negative feedback. This means we feed a portion of the output signal back to the inverting input. This feedback loop forces the op-amp to behave predictably. A key consequence of negative feedback in some op-amp configurations is the creation of a virtual ground. When the non-inverting input is connected to ground and negative feedback is present, the op-amp actively works to keep the inverting input at the same potential as the non-inverting input (i.e., ground). This means the inverting input acts as if it's connected to ground, even though it's not physically connected. This virtual ground and negative feedback allow us to build various useful circuits: Amplifiers: By carefully choosing resistors in the feedback loop, we can precisely control the gain of the amplifier. Inverters: we can invert the polarity of a signal. Buffers: We can create circuits that isolate different parts of a system, preventing one part from affecting another. In essence, negative feedback and the resulting virtual ground are the key concepts that turn a simple, uncontrolled amplifier into a versatile building Block for electronics.
View entire post
Answer to: How to choose coupling capacitor sizes for an audio amplifier?
Theoretical questions
Deboojit
2 years ago
4 Relevance
Choosing the correct coupling capacitor size for an audio amplifier involves balancing low-frequency response, impedance matching, and size constraints. Here are the key considerations: 1. Understand the Role of the Coupling Capacitor Coupling capacitors Block DC while allowing AC (audio signals) to pass through. They are positioned between amplifier stages or at the input/output to prevent DC bias from affecting subsequent circuits. 2. Determine the Cutoff Frequency The coupling capacitor and the input impedance of the next stage form a high-pass filter. The cutoff frequency (fc) is calculated as: fc=1/2πRC​ Where: fc = Desired cutoff frequency (e.g., below 20 Hz for full-range audio) R = Input impedance of the next stage (in ohms) C = Coupling capacitor value (in farads) 3. Select the Input Impedance (R) Find the input impedance of the next amplifier stage or load. For example, if the input impedance is 10 kΩ, use this value in the equation. 4. Choose the Desired Frequency Response Decide the lowest frequency the amplifier should handle without significant attenuation. For audio applications, 20 Hz is often the target. 5. Calculate the Capacitor Value Rearrange the formula to calculate C: C=1/2πRfc​ For example, if R=10 kΩ and fc=20 Hz C=1/2π×10,000×20=0.8 μF 6. Choose a Practical Capacitor Select the next standard capacitor value above the calculated value (e.g., 1 μF if 0.8μF is calculated). Consider using film or electrolytic capacitors, depending on the circuit's requirements. Film capacitors are preferred for audio due to their stability and low distortion.
View entire post

Forum Search

Recent Posts

  • 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 , 4 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 , 6 months ago

  • Bluetooth Speaker won't turn on

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

    By servitec , 6 months ago

  • Answer to: Why Fluke multimeters are so expensive?

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

    By maryjlee , 9 months ago

  • Answer to: Can Raspberry Pi Replace a Home Router or Firewall?

    Yes, it’s definitely possible to turn a Raspberry Pi (e...

    By Divyam , 9 months ago

Share:
Forum Information
Recent Posts
Unread Posts
Tags
  • 9 Forums
  • 278 Topics
  • 744 Posts
  • 2 Online
  • 287 Members
Our newest member: playwithcircuit
Latest Post: esp32 diagram connection
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