Skip to content
eT Community

eT Community

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

Search result for:  WA 0812 2782 5310 Paket Pembuatan Pintu Garasi Low Budget Terpercaya Sukodono Sragen

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

 Sort Search Results by:


Page 5 / 7 Prev Next
Answer to: How does PID control work in automation?
Theoretical questions
Tech Geek
1 year ago
2 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
Answer to: Confused About NODEMCU and ESP8266 – Are They the Same?
ESP32
Loris
2 years ago
2 Relevance
... Low-cost Wi-Fi microchip with full TCP/IP stack and microcontroller capability. It WAs developed by Espressif Systems and has become very popular due to its Low cost and ease of use in Internet of Things (IoT) projects and other applications requiring wireless communication. NodeMCU: On the other hand, NodeMCU primarily refers to two things associated with the ESP8266: Development Board: The NodeMCU development board is based on the ESP8266 microchip. It's a user-friendly and open-source IoT platform. It includes a firmware that runs on the ESP8266 ...
View entire post
Answer to: Difference Between delay() and millis() in Arduino?
Programming
Admin
1 year ago
2 Relevance
In-depth explanation of delay() VS millis() in Arduino: What is delay()?The delay(ms) function is a simple WAy to pause your program for a specific duration (in milliseconds). While using delay(), the microcontroller does nothing except WAit, effectively blocking all other code execution. Example: Blinking an LED using delay()Here’s a basic example of using delay() to blink an LED every second: const int ledPin = 13; void setup() { pinMode(ledPin, OUTPUT); } void loop() { digitalWrite(ledPin, HIGH); // Turn LED on delay(1000); // WAit for ...
View entire post
Answer to: Can I connect a camera to Arduino UNO?
Hardware/Schematic
Admin
2 years ago
2 Relevance
Connecting a camera directly to an Arduino UNO is challenging due to its limited processing power, memory, and data transfer capabilities. It is not well-suited for handling image or video data, as it lacks the necessary resources to process large amounts of data efficiently. However, there are a few camera modules that can be used for basic image capturing, although the functionality will be quite limited. Also, its very difficult to interface them with UNO. The two camera modules supported by UNO, as far as I know, are: OV7670 Camera Module: Limited to very Low resolutions (640X480 px maximum). The Arduino UNO's limited SRAM (2 KB) restricts the ability to capture and store high-resolution images. ArduCAM Mini: Designed specifically for Low-power microcontrollers like the Arduino but is very costly. These modules come with built-in memory (FIFO buffer) that allows the Arduino to offload some of the image data storage and processing to the camera itself.
View entire post
Answer to: How to choose coupling capacitor sizes for an audio amplifier?
Theoretical questions
Deboojit
2 years ago
2 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
Answer to: Can i use EN pins for PWM speed control in L298N Motor driver?
Hardware/Schematic
Admin
2 years ago
2 Relevance
Yes, you can hook these pins to the PWM pin on Arduino. The Enable pin on the L298N acts as a gatekeeper for the power supplied to the motor. When the pin is set HIGH, the motor is enabled and can run. When set Low, the motor is disabled and stops. By connecting the Enable pin to a PWM-capable pin on the Arduino and sending a PWM signal, you can control the effective voltage supplied to the motor. This changes the speed of the motor: A higher duty cycle (e.g., 100%) means the Enable pin is HIGH most of the time, allowing full power to the motor and thus full speed.A Lower duty cycle (e.g., 50%) means the Enable pin is HIGH only half the time, reducing the average power supplied to the motor and thus reducing the speed. Here's an example that demonstrates how to set up and control the motor speed connected to A channel: // Define pins const int ENA = 9; // PWM pin for Motor A const int IN1 = 8; // Direction pin 1 for Motor A const int IN2 = 7; // Direction pin 2 for Motor A void setup() { // Set pin modes pinMode(ENA, OUTPUT); pinMode(IN1, OUTPUT); pinMode(IN2, OUTPUT); } void loop() { // Set motor direction digitalWrite(IN1, HIGH); digitalWrite(IN2, Low); // Set motor speed using PWM analogWrite(ENA, 127); // 50% duty cycle, half speed delay(2000); // Run for 2 seconds // Change motor speed analogWrite(ENA, 255); // 100% duty cycle, full speed delay(2000); // Run for 2 seconds
View entire post
Answer to: BJT VS MOSFET- Current controlled vs Voltage controlled
Theoretical questions
Tech Geek
2 years ago
2 Relevance
Maybe this explanation will help: BJT has three regions: emitter, base, and collector, with the emitter and collector, doped to create majority carriers (electrons for NPN, holes for PNP). Applying a forward bias to the base-emitter junction allows majority of carriers to diffuse into the base. Due to the thin and lightly doped base, most carriers don't reach the collector; some recombine within the base, generating a small base current (Ib), while the remainder is injected into the collector, forming the collector current (Ic). While voltage plays a role in creating the forward bias at the base-emitter junction, it's not the direct control factor. The voltage drop across this junction is relatively constant. It's the current injected due to this voltage that ultimately controls the collector current. Even a small change in base current (Ib) significantly influences the number of carriers injected into the collector, resulting in a current gain (beta, β), hence BJTs are termed current-controlled devices. MOSFET has an insulated gate separated by a thin oxide layer from the channel. When voltage is applied to the gate, it induces an electric field across the oxide, influencing charge carriers in the channel (electrons for NMOS, holes for PMOS), thereby establishing a conductive or resistive region. High gate voltage prompts a strong electric field, creating a Low-resistance channel for high current flow, whereas Low gate voltage yields a weaker field, resulting in reduced current flow. Voltage modulation of the gate controls the electric field strength, subsequently regulating channel resistance and drain current, with minimal current flow between gate and channel due to insulation. Hence they are voltage controlled devices.
View entire post
Answer to: Why should unused inputs of logic gates not be left floating?
Theoretical questions
TechTalks
10 months ago
1 Relevance
Unused inputs of logic gate ICs should never be left floating because they can cause unpredictable circuit behavior. In TTL logic, unconnected inputs tend to float high due to internal biasing, but they remain highly noise-sensitive, which may lead to erratic switching and increased power consumption as the input transistors may conduct partially. In CMOS logic, the problem is more severe since inputs have extremely high impedance; a floating input can settle at any undefined voltage, easily influenced by noise or static charges. This can cause random oscillations, unnecessary switching, higher power consumption, and even possible damage due to internal shoot-through currents. To avoid these issues, the recommended practice is to always tie unused inputs to a defined logic level, either VCC (logic HIGH) or GND (logic Low). This can be done with a direct connection or through a resistor (typically 1kΩ–10kΩ if current limiting is desired).
View entire post
Answer to: Can ESP32 stream audio over Wi-Fi or Bluetooth?
ESP32
Neil_Overtor...
11 months ago
1 Relevance
Yes, it’s possible to stream audio from an ESP32 over both Wi-Fi and Bluetooth, but the method depends on what you need. For Wi-Fi, many developers use the ESP-ADF (Espressif Audio Development Framework), which supports protocols like HTTP, WebSocket, or RTP for audio streaming. Some lighter approaches involve ESPAsyncWebServer to stream raw or encoded data such as MP3. For Bluetooth, the ESP32-A2DP library works well for sending audio to headphones or speakers using the A2DP profile. In terms of performance, the ESP32-S3 and ESP32-A1S (with an external audio codec) are better suited than the standard ESP32 since they handle audio tasks more efficiently and have stronger support in ESP-ADF. Wi-Fi generally provides higher bandwidth and better quality but can introduce noticeable latency, while Bluetooth offers simpler real-time streaming at the cost of codec limitations and range. Overall, the ESP32 is capable of decent audio streaming for IoT or hobby projects, though it won’t match dedicated audio hardware for high-fidelity or ultra-low-latency applications.
View entire post
Answer to: Can I use Analog pins as digital output pin?
Programming
Paul
11 months ago
1 Relevance
Yes, on Arduino boards the analog pins can also function as digital I/O pins. Each analog pin has a digital pin number assigned internally (for example, on Arduino Uno A0 = D14, A1 = D15, and so on). To use them as digital outputs, you simply use the same commands as with normal digital pins: pinMode(A0, OUTPUT); digitalWrite(A0, HIGH); digitalWrite(A0, Low); Here, A0 is used directly, but you can also refer to it by its digital pin number (like 14 for A0). This allows you to extend the number of available digital I/O pins on your Arduino.
View entire post
Answer to: How to Locate a Short Circuit on a PCB?
Theoretical questions
Paul
11 months ago
1 Relevance
... the board, lifting one leg of suspected components (like capacitors or diodes) to see if the short clears. Electrolytic caps are a common culprit. Another simple method that’s helped me is the finger test or using a drop of isopropyl alcohol. Power the board with a current-limited supply (set Low, so nothing burns), and often the shorted component will heat up faster than the rest. You can sometimes feel it with your finger or WAtch where the alcohol evaporates first. If the short is stubborn, I’ve also followed the divide and conquer approach—cutting tra ...
View entire post
Answer to: Multimeter continuity beeps with no contact — false positives?
Equipments
Anju
1 year ago
1 Relevance
If your multimeter is acting strangely—like giving false continuity readings—my advice is to first check the manual. If you don’t have a physical copy, most manufacturers provide manuals online. Make sure the test probes are inserted into the correct sockets for the type of measurement you're doing, and also verify that the batteries are in good condition and properly installed. If everything appears fine and the problem still exists, there’s a good chance the multimeter itself is faulty—especially if it’s a Low-cost model. I wouldn’t recommend trying to repair it yourself, as defects might affect other functions and make it potentially unsafe to use. In such cases, it's better to replace it with a quality multimeter that’s safety-rated. This ensures greater reliability and safety, especially for household electrical work.
View entire post
Answer to: How to Identify the Neutral Wire Using a Multimeter?
Equipments
CircuitSpher...
1 year ago
1 Relevance
To identify the neutral wire safely, start by disconnecting the mains power at the main breaker—this is absolutely essential for your safety. Next, use a multimeter to verify that the phase (live), neutral, and protective earth (PE) wires are separate by measuring the resistance between each pair: phase and neutral, phase and PE, and neutral and PE. Each measurement should show high resistance, typically in the megaohm (MΩ) range, indicating proper separation. If you get Low resistance readings, there may be a crossover or shared connection in the wiring, which is often difficult to trace—especially in older homes. Once you're sure the circuits are isolated, you can run a temporary cable from a known neutral point to the location you're testing. Measuring the loop resistance at that point will help you determine which wire is which. Finally, before handling any wires, always check for voltage using a multimeter—even if you believe the power is off. In older installations, improper wiring or feedback from other circuits can leave wires unexpectedly live, so never rely solely on switches. Safety first.
View entire post
Answer to: Connecting Unequal Li-ion Batteries in Parallel
Theoretical questions
Sebastian
1 year ago
1 Relevance
When you connect two Li-ion cells with different voltages—like 4.1V and 3.9V—in parallel, current instantly flows from the higher to the Lower voltage cell. Because Li-ion cells have very Low internal resistance, even a 0.2V difference can cause a surge of several amps. This surge can stress or damage the cells and create heat. The cells don’t “wait” to equalize—the voltage difference drives immediate current flow, limited only by resistance. While internal resistance slows the surge slightly, it’s not enough to make the connection safe. A Battery Management System (BMS) helps balance cells over time but doesn’t always protect against mismatched voltages during connection. To stay safe, always match cell voltages within a few millivolts before connecting them in parallel.
View entire post
Page 5 / 7 Prev Next

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
  • 0 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