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 Upah Borongan Kanopi Baja Ringan Atap Alderon Single Layer Gunungkidul

 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: What’s the difference between a Microprocessor and a Microcontroller?
Theoretical questions
Admin
2 years ago
6 Relevance
... Unit) and needs external components like memory (RAM/ROM), input/output interfaces, and peripherals to work. Think of it as what you’d find in a computer, like an Intel Core i7 or an AMD Ryzen. It’s designed for complex tasks and multitasking. Applications: Computers, laptops, and smartphones. Flexibility: You get to design the system around it by adding the components you need. Microcontroller (MCU): A microcontroller, on the other hand, is more like an all-in-one package. It includes a CPU(a processor), memory (RAM/ROM), and peripherals like GPIO pins ...
View entire post
What Does a Decoder Do in Digital Electronics?
Theoretical questions
Rahav
1 year ago
2 Relevance
I'm learning about logic gates and a bit confused. How does a decoder turn binary into a Single output? And how do multiplexers use select lines to choose an input?
View entire post
Answer to: What’s the difference between a Microprocessor and a Microcontroller?
Theoretical questions
TechTalks
2 years ago
2 Relevance
A microprocessor serves as the "brain" of a computer, whereas a microcontroller is a complete computer system on a Single chip. Microcontrollers are ideal for applications where cost, power consumption, and size are critical factors, while microprocessors are better suited for high-performance computing tasks.
View entire post
Program to toggle LED state with a single button?
Programming
tricky_logic
1 year ago
6 Relevance
... tried using digitalRead() in a simple if condition, but I suspect I need to debounce the button properly. Should I use delay(), or is there a better approach using millis()? Here’s my basic code: const int buttonPin = 2; const int ledPin = 13; bool ledState = false; void setup() { pinMode(buttonPin, INPUT); pinMode(ledPin, OUTPUT); } void loop() { if (digitalRead(buttonPin) == HIGH) { ledState = !ledState; digitalWrite(ledPin, ledState); delay(200); // Debounce delay? } } Is there a more reliable ...
View entire post
Answer to: RS232 vs. UART – What’s the difference?
Arduino
Rashid
1 year ago
5 Relevance
The following points highlight the major differences between UART and RS-232: UART (Universal Asynchronous Receiver-Transmitter) is a hardware module responsible for serial communication, whereas RS-232 is a communication standard that defines voltage levels and signaling for serial data exchange. UART operates at TTL logic levels, typically 0V for LOW and 3.3V or 5V for HIGH, while RS-232 uses higher voltage levels, ranging from ±3V to ±15V. UART manages data framing with start and stop bits, whereas RS-232 does not define framing but specifies the physical Layer, including connectors and wiring. Since RS-232 operates at different voltage levels, a level shifter like MAX232 is required to interface RS-232 signals with UART-based TTL logic devices.
View entire post
Answer to: BJT VS MOSFET- Current controlled vs Voltage controlled
Theoretical questions
Tech Geek
2 years ago
5 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: How can I interface an AI camera module with Arduino?
Hardware/Schematic
cooper
9 months ago
2 Relevance
Arduino Uno and Nano primarily function as control interfaces rather than image processors when working with AI camera modules. These boards have extremely limited resources (2KB RAM on Uno, 32KB flash memory) which makes it impossible to store even a Single 320x240 pixel image, let alone process it. Instead, AI modules like HuskyLens, OpenMV, or ESP32-CAM contain dedicated processors (like STM32H7 in OpenMV or ESP32 in ESP32-CAM) that handle all the computationally intensive tasks internally. These modules run neural networks, perform image processing, and extract features, then send only the interpreted results to Arduino - such as "face ID:1 detected at position (150, 120)" or "red line detected at angle 45°". The Arduino then uses these simplified data packets to make decisions, like turning a servo to track the face or adjusting motor speed to follow a line.
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
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
What’s the real impact of a broken neutral in a 3-phase 4-wire system?
Theoretical questions
DabieTech
1 year ago
2 Relevance
I’ve read that a broken neutral in a 3-phase 4-wire system can cause serious problems, especially in systems with unbalanced loads, but I’m not entirely clear on what exactly happens when the neutral is lost. Let’s say the system is supplying a mix of Single-phase loads (like in a commercial or residential setup). If the neutral breaks at some point—what are the actual consequences for the connected loads? Do voltages across phases shift dangerously? Can it damage appliances or equipment? How does the system behave differently under balanced vs. unbalanced load conditions? I’m looking for a practical explanation of what happens electrically and what kind of damage or safety risks it introduces. Real-world examples or typical protection mechanisms would be great too. Thanks!
View entire post
Answer to: Why don’t birds get electrocuted on power lines?
Theoretical questions
Neeraj Dev
1 year ago
2 Relevance
That's a great observation and a very common question. The reason birds don’t get electrocuted while sitting on high-voltage power lines has to do with how electricity flows. Electricity needs a path to flow—from a higher voltage point to a lower voltage point (or ground). When a bird perches on a Single wire, both of its feet are at the same electrical potential. Since there's no difference in voltage between the two contact points, there's no current flowing through the bird’s body, which is what causes electrocution. However, if the bird were to touch two wires at different voltages at the same time, or a wire and a grounded object (like a pole or transformer), then electricity would flow through it, and it could be fatal. So, it's not about the bird’s size—it’s about the fact that it’s only touching one wire and not providing a path for current to flow through.
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
Answer to: Are there any Arduino-compatible Wi-Fi modules that support 5GHz?
Arduino
TechPulse
1 year ago
2 Relevance
You see, most of the Mainstream boards don't support it, there are a few options: ESP32-C6 and ESP32-C5 (newer chips by Espressif) are designed to support both 2.4GHz and 5GHz. However, they are relatively new and not yet as widely available or supported in the Arduino ecosystem as the original ESP32. Other options include using more powerful SBCs (Single-Board Computers) like Raspberry Pi, which can support dual-band Wi-Fi and integrate with Arduino if needed.
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 , 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 , 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

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