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 [[PANDAWA]] Kontraktor Renovasi Rumah Kayu Knock Down Di Boyolali

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

 Sort Search Results by:


Page 2 / 3 Prev Next
Answer to: Why Fluke multimeters are so expensive?
Equipments
maryjlee
9 months ago
2 Relevance
... etc. Tough housing, drop-tests, high-CAT safety ratings. High accuracy, true-RMS, stable calibration. Long lifespan, support and WArranty which reduce long-term cost. If you’re replacing a hobby-meter and don’t work in heavy duty applications, yes you might be fine with a cheaper brand. But if you need one tool that you can trust under serious conditions, the extra cost makes sense.
View entire post
Answer to: SPI vs I2C vs UART: which interface should I use for my application and why?
Theoretical questions
Jaden
10 months ago
2 Relevance
I²C is the best single interface choice for on-board sensors when the priorities are minimal pins, low power, and reliable data. It uses just two shared wires, is supported by a wide range of low-power sensors, and enables software power-down strategies; address conflicts and pull-up sizing are the main practical considerations, both of which have straightforward hardware or firmware workarounds. If desired, a follow-up reply can include example pull-up values, suggested load-switch parts for power gating, or a short checklist to confirm sensor address and sleep capability before PCB finalization.
View entire post
Answer to: What’s the practical limit on daisy-chaining shift registers?
Theoretical questions
Rahav
1 year ago
2 Relevance
Daisy-chaining a large number of shift registers, such as the popular 74HC595, is technically possible, but there are practical limitations you need to consider. Each shift register introduces a propagation delay, and as the chain gets longer, these delays accumulate. When chaining around 100 shift registers, the total propagation delay can become significant, requiring you to slow Down the clock frequency considerably to ensure reliable data transfer. High-speed operation becomes nearly impossible at this scale without special measures. Signal integrity is another major concern. Longer chains increase the length of the data and clock lines, which can result in voltage drops, reflections, and noise issues. To maintain clean signals, you will likely need to use buffers or repeaters at certain points in the chain, along with careful PCB layout and proper decoupling. If your design truly requires controlling such a large number of outputs, consider whether a Different approach might be more suitable. For example, I²C or SPI GPIO expanders with unique addressing can drastically reduce complexity. Alternatively, you could use multiple smaller chains driven by separate microcontroller pins.
View entire post
I’m getting noise on my analog readings—how can I clean them up?
Arduino
JannikTechy
1 year ago
2 Relevance
... the values still jump around. I’m not sure if it’s an issue with my wiring, the power supply, or if I need filtering components. What are some effective WAys to reduce analog noise in Arduino projects? Should I add capacitors, use shielding, or try software filtering techniques? I’d appreciate any practical tips or examples that have worked for others.
View entire post
Answer to: SR Latch Output Unstable with Mechanical Switches?
Theoretical questions
Bryan
1 year ago
2 Relevance
Yep, you're on the right track—mechanical switch bounce is the most likely culprit here. Mechanical contacts don’t just close once—they physically bounce for a few milliseconds, causing multiple rapid transitions that your SR latch interprets as separate inputs. That’s why you're seeing multiple or unstable output changes. To fix this issue, I recommend using a resistor and capacitor on the input line. A typical starting point is a 10kΩ resistor and a 0.1µF capacitor. This will help smooth out the bounce. Also, make sure the inputs aren’t floating and are properly pulled up or Down. That should clean up the behavior of your SR latch.
View entire post
SR Latch Output Unstable with Mechanical Switches?
Theoretical questions
electronicb_...
1 year ago
2 Relevance
... but I’m not sure if that’s the only cause. Do I need to add debouncing components? If so, what’s the best WAy to debounce inputs for an SR latch—hardware (RC filter, Schmitt trigger) or software (if used with a microcontroller)?Also, could stray signals or improper pull-up/pull-down resistors be contributing?
View entire post
Answer to: How does Arduino handle floating-point operations?
Programming
Admin
1 year ago
2 Relevance
Yes Arduino can do floating-point operations, but there’s a few things to keep in mind. 1. On boards like the Uno or Nano (which use the ATmega328P), it supports float and double, but the funny thing is—they’re actually the same thing. Both are 32-bit IEEE 754 floating point numbers. So don’t expect extra precision with double, it's just a float behind the scenes. 2. It can handle basic operations like addition, subtraction, multiplication, and Division just fine. But it’s not super fast at it, since the 8-bit microcontrollers don’t have a floating point unit (FPU). That means it does all floating-point math in software, which can slow things Down if you’re doing a lot of calculations in your loop. 3. Also, things like sin(), cos(), sqrt() and pow() work, but again, they’re kinda heavy on processing time. So if you’re working with sensors and need to process stuff quickly, it’s sometimes better to stick with integers where possible, or scale up the values and work in "fixed point" math if you can. 4. One more thing—printing floats with Serial.print() only shows two decimal places by default. You can control that though: float pi = 3.14159; Serial.print(pi); // prints 3.14 Serial.println(pi, 4); // prints 3.1416 So yeah, Arduino can handle floats, but it’s not optimized for heavy-duty number crunching. If you're doing more advanced math or need higher precision, better to move to something like a Teensy or a 32-bit board like the Arduino Due or even ESP32. But for basic stuff, it’s totally usable.
View entire post
Answer to: Why are there two separate registers in 74HC595?
Circuits and Projects
Admin
1 year ago
2 Relevance
Let me break this Down step by step: The 74HC595 shift register works in three key stages/phases: Shift Register (SRCLK-controlled)This is made up of 8 flip-flops connected in series, forming an 8-bit shift register. As each clock pulse is applied to SRCLK, the data on the SER (serial input) pin is shifted through these flip-flops one bit at a time. Storage Register (RCLK-controlled)These are another set of 8 flip-flops, but unlike the shift register, they are not cascaded. Instead, each one takes input from its corresponding flip-flop in the shift register. When a rising edge is applied to RCLK, all 8 bits from the shift register are latched into the storage register simultaneously. Tri-state Output Buffers (OE-controlled)Each output pin is connected to a tri-state buffer. These buffers control whether the output pins are actively driving the stored values or are in a high-impedance (disabled) state. This is controlled by the OE (Output Enable) pin. How is data flowing? After 8 SRCLK pulses, the serial data has fully shifted through the shift register and is now present at the inputs of the storage register. A single RCLK pulse latches all 8 bits into the storage register. If the output enable (OE) is active (typically low), the latched data is made available on the Q0–Q7 output pins. Now, to answer your question, what is the need for a separate 'storage register'? Without it, the outputs would Directly reflect the shifting process — meaning the output pins would change with every SRCLK pulse as data moves through the shift register. This would result in unintended flickering or unstable outputs while new data is being loaded. The storage register acts as a buffer, holding the previous stable output until you're ready to update it. Only when RCLK is triggered does the new data get transferred all at once to the output pins — ensuring clean, controlled updates.
View entire post
Buck Converter Ripple Despite using Capacitors?
Theoretical questions
Ashutosh
1 year ago
2 Relevance
I'm using a buck converter to step Down 12V to 5V, and I've added electrolytic and ceramic capacitors at the output to smooth the voltage. However, I'm still seeing noticeable voltage ripple on the output when checked with an oscilloscope. I've tried: Adding more capacitance (both ceramic and electrolytic) Placing the capacitors as close to the output as possible Using Different load conditions Despite this, the ripple remains.What could be the cause of this ripple even with proper output capacitors? Is it related to the switching frequency, capacitor ESR, PCB layout, or something else?
View entire post
Answer to: What does it mean to “set the trigger” on an oscilloscope?
Equipments
Deboojit
1 year ago
2 Relevance
When you simply connect an oscilloscope to a signal, the screen may show a WAveform that appears unstable, jittery, or rolling. This happens because the scope doesn’t know when to start drawing each WAveform—it just keeps refreshing as data comes in. That’s where the trigger comes in. The trigger tells the oscilloscope when to begin drawing the WAveform on the screen. It locks the Display to a specific event—like when the signal crosses a certain voltage level going up (rising edge) or Down (falling edge). By doing this, it ensures that each sweep starts a ...
View entire post
Answer to: Is a capacitor really linear?
Theoretical questions
Admin
1 year ago
2 Relevance
A capacitor is called linear because the relationship between the voltage across it and the current flowing through it is linear. The exponential curve you're seeing is its behavior over time, which is Different. Here’s the breakdown: What "Linear" actually means here In circuit theory, a component is linear if it follows the rule of superposition and scaling.1 In simple terms: if you double the cause, you double the effect. For a capacitor, the relationship is defined by the equation 2I=CdtdV​.3 This means the current (4I) is Directly proportional to the rate of change of voltage (5dV/dt).6 So, if you double the current going into the cap, its voltage changes twice as fast. If you halve the current, its voltage changes half as fast. That Direct, proportional relationship is what makes it a linear component. So why the exponential curve? That famous exponential curve shows the capacitor's voltage versus time when it's part of a circuit with a resistor (an RC circuit). It's not a Direct graph of voltage vs. current. Think about what happens when you charge it: At the start, the capacitor is empty, so a large current flows in. As it charges, voltage builds up across it. This built-up voltage opposes the source, which reduces the voltage across the resistor, and therefore reduces the current flowing into the cap. So, the charging slows Down as it gets fuller. This process of "charging slower and slower as it fills up" is what creates that exponential curve. The capacitor itself is still behaving linearly at any given instant, but the behavior of the whole circuit over time is exponential. So: Component's V-I relationship: Linear. (The physics of the cap itself). Circuit's V-T response: Exponential. (The behavior you see over time in an RC circuit). Hope that clears it up!
View entire post
Answer to: ESP32 Vs ESP8266?
ESP32
Admin
1 year ago
2 Relevance
Ok, I will make the choice of choosing between an ESP32 and ESP8266 as simple as possible for you: Price: If you check the online stores, the price of ESP32 is almost double that of the ESP8266. So if you have a tight budget, ESP8266 is the more WAllet-friendly option. Processing Power: The ESP32 has dual cores and more memory, making it faster and better at handling multiple tasks. The ESP8266 has a single core, which might slow things Down if your project is big. Extra Features: The ESP32 comes with Bluetooth (and sometimes more I/O pins), while the ESP8 ...
View entire post
Answer to: Why are some capacitors polarized while others are not?
Theoretical questions
Tech Geek
1 year ago
2 Relevance
Some capacitors are polarized because they offer a higher energy density, meaning they can store more capacitance in a smaller space. This is particularly useful in applications like linear power supplies, where capacitors need to store energy between AC power peaks. Polarized capacitors, such as electrolytic and tantalum types, rely on an insulating layer that can only function correctly when the voltage is applied in the correct Direction. If connected with reversed polarity, this layer can break Down, leading to failure. However, not all capacitors need to be polarized. In many applications, such as AC circuits where the voltage alternates, non-polarized capacitors like ceramic and film types are required. These capacitors do not have a fixed polarity, making them suitable for such use cases.
View entire post
Answer to: Program to toggle LED state with a single button?
Programming
Admin
1 year ago
2 Relevance
... tries to debounce but isn't ideal because it blocks the loop and prevents the Arduino from doing anything else during that time. Direct Button Read Without Edge Detection – Since you're checking DigitalRead(buttonPin) == HIGH, if you hold the button Down even slightly too long, it keeps toggling instead of switching just once per press. Try the program given below. Better program to toggle LED state with a single button: const int buttonPin = 2; const int ledPin = 13; bool ledState = false; bool lastButtonState = LOW; unsigned long lastDebounceTime = ...
View entire post
How does an operational amplifier (op-amp) work?
Theoretical questions
Jaden
1 year ago
2 Relevance
I understand the basics of electronics well enough, but for some reason, op-amps completely throw me off. I get that they amplify signals, but the whole idea of negative feedback, virtual ground, and Different configurations just doesn’t click. Can someone break it Down in a WAy that actually makes sense?
View entire post
Page 2 / 3 Prev Next

Forum Search

Recent Posts

  • RE: Beginner Arduino Course —Any Recommendations?

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

    By playwithcircuit , 4 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 , 6 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
  • 1 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