Skip to content
eT Community

eT Community

  • Forums
  • Members
  • Recent Posts
  • Website
Forums
Search
 
Notifications
Clear all

Search result for:  WA 0812 2782 5310 Harga Jasa Renovasi Rumah Sederhana Per M2 Kulon Progo

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

 Sort Search Results by:


# Post Title Result Info Date User Forum
RE: new to electronics and needing some guidance with a circuit . 555 LED lights   6 Relevance 8 months ago Admin Circuits and Projects
  Hi! I checked the circuit on TinkerCad. There were some mistakes, like wrong capacitor connection and value. Here's the edited one: A couple of points worth mentioning here: 1. On running the simulation, TinkerCad shows too much current drawn from the IC and may damage it. 2. This is true if you are running it continuously. In this case, all LEDs are ON at the same time for a very small duration, so it somehow works. 3. Still, not a good idea in the long run. I will suggest: 1. Use a 220-ohm resistor instead of 100. And connect two LEDs Per pin to only one resistor. Meaning a total of 8 resistors for an 8-pin. This will reduce the overall current draw from the IC and Per pin as well. 2. Better use 330 ohm..but not that it will reduce the brightness of the LEDs further.
Answer to: What is the difference between L293D and L298N Motor Driver?   6 Relevance 1 year ago Admin Theoretical questions
  Attachment : L293D-Vs-L298N.jpeg The only important difference between the L293D and L298N motor driver module is the current rating: L293D: Can handle up to 600mA Per channel (with a peak of 1.2A for brief Periods). L298N: Can handle up to 2A Per channel (with a peak of 3A for short bursts). So if your motors require more than 600mA of current, the L298N would be a better choice due to its higher current capacity and attached heatsink. If you ignore the rating, there is an advantage to L293D: Since the L293D IC comes in a DIP package, you can use it as it is in your circuit such as on a breadboard or a PCB. L298N doesn't offer this feature since it comes in a Multiwatt-15 package. So you are forced to buy the complete L298N module. Also, the price of the L293D IC is very low compared to the L298N module. You can read the differences between these two in detail here: L298N VS L293D
Answer to: Difference between EEPROM and Flash?   3 Relevance 5 months ago Paul Hardware/Schematic
  EEPROM and Flash are both non-volatile memories built from floating‑gate transistors, but they differ mainly in write/erase granularity. EEPROM lets you update individual bytes (it internally erases just that byte), giving higher endurance and making it ideal for small, frequently changed settings. Flash must erase larger blocks/sectors and program in pages (you typically erase a whole sector before changing any byte), which makes it cheaper Per bit and faster for bulk storage like firmware and large data.
RE: Li-ion vs. Li-Po Batteries: Which One Should I Choose?   3 Relevance 1 year ago Admin Theoretical questions
  For a portable IoT device, Li-ion is generally the better choice because of its higher energy density and longer lifespan. It’ll give you more runtime Per charge and is easier to manage in terms of charging circuits and protection. That said, Li-Po can work for IoT devices, but it’s usually overkill unless you have specific design constraints—like needing a really thin form factor or a custom shape that standard Li-ion cells don’t fit. One area where Li-Po might make sense is if your device has occasional power spikes, since Li-Po batteries can handle higher discharge rates.
Answer to: Maximum current limitation of a digital pin on UNO   3 Relevance 2 years ago Admin Hardware/Schematic
  Yes, the current limit Per pin is 40 mA(sink/source OR IN/OUT). However, this is the maximum absolute rating and you should not draw this much current continuously. The safe value is around 20-30 mA. It's better to use a DC motor driver like L293D or L298N for driving DC motors using Arduino. I hope this helps.
Maximum current limitation of a digital pin on UNO   3 Relevance 2 years ago Harper Hardware/Schematic
  Hey folks, I'm new to Arduino and tinkering with digital pins for a project. I'm trying to control a DC motor that I've hooked up to one of the digital pins. I've heard it's important to stay within the current limits of the pins, around 40mA Per pin. Can someone confirm this for me? And also, what happens if I exceed this limit while powering the motor? Will it damage my board?
Answer to: Shift Register Cascading Issues   3 Relevance 8 months ago Tech Geek Theoretical questions
  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.
Answer to: What is signal sampling in ADC?   3 Relevance 10 months ago Rashid Theoretical questions
  Signal sampling is the process of measuring an analog signal at regular intervals so it can be converted into digital form by an ADC (Analog-to-Digital Converter). The sampling rate is the number of samples taken Per second, usually measured in Hertz (Hz). A proper sampling rate is essential for accurately capturing the original signal. If the sampling rate is too low, the ADC may miss important changes in the signal, leading to aliasing, where the digital representation becomes distorted or misleading. On the other hand, if the sampling rate is too high, it creates excessive data, which can strain memory, processing power, and storage without adding useful detail. Resolution, determined by the ADC’s bit depth, defines how precisely each sample represents the signal’s voltage level. However, even high-resolution data won’t help without a good sampling rate. As a general rule, sample at least twice the highest frequency in the analog signal (Nyquist rate) to ensure accuracy.
Answer to: Program to toggle LED state with a single button?   3 Relevance 12 months ago Admin Programming
  ... 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 = ...
Answer to: Multiple LEDs using fewer Pins- how to expand Arduino GPIO pins?   3 Relevance 1 year ago Admin Arduino
  ... shift register, and you can daisy-chain multiple registers to control even more LEDs. This is a great solution if you need simple on/off control for your LEDs. Multiplexing – If you don’t need all LEDs to be on simultaneously, you can use a multiplexing approach. This involves arranging LEDs in a matrix where rows and columns are controlled separately, significantly reducing the number of GPIOs needed. However, since LEDs are turned on one at a time in rapid succession, brightness might be affected unless you use high-speed switching. LED Driver ICs (e.g. ...
Answer to: Difference between EEPROM and Flash?   3 Relevance 1 year ago Admin Hardware/Schematic
  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.
Answer to: What is EEPROM in Arduino and how to use it?   3 Relevance 1 year ago Sebastian Hardware/Schematic
  EEPROM (Electrically Erasable Programmable Read-Only Memory) allows you to store data even after the board is powered off. It's non-volatile. This makes it useful for storing things like settings, calibration values, or any data you WAnt to retain. Let's understand the different memory types in Arduino: SRAM: Works as temporary storage while the program is running. Data in SRAM is lost when the power is turned off. Flash Memory: The Arduino stores your program code here. Like EEPROM, flash memory is non-volatile, but you can't store or retrieve any data d ...
Answer to: What exactly is PWM resolution ?   3 Relevance 2 years ago Admin Hardware/Schematic
  Hey, Note: UNO R3 supports 8-bit PWM resolution, not 10. Higher resolution means the PWM output can be more finely tuned, resulting in a smoother signal. This is particularly important in applications like motor control, LED dimming, and audio signal generation. 8-bit resolution means there are 256 possible duty cycle values (from 0 to 255). That's why the analogWrite(PWM pin, PWM value) takes values bw 0 and 255. In this case, increasing the duty cycle step by step corresponds to a change of approximately 0.4% (1/256) of the full-scale value. Whereas the 16-bit resolution means there are 65,536 possible duty cycle values (from 0 to 65,535).Each step in the duty cycle corresponds to a change of approximately 0.0015% (1/65,536) of the full-scale value. As much as the resolution is important, so does the frequency of the PWM signal. The increase in PWM resolution decreases the maximum PWM frequency possible for the same clock frequency. if UNO and ESP32 have the same clock frequency i.e., 16 MHZ. The maximum possible PWM frequency(16-bit) for ESP32 will only be 244 Hz. Whereas for UNO(8-bit), it is 62.5 KHz. For example, 16 MHz / 256 and 16 MHz / 65,536. EDIT: Hey everyone! Let’s clear up the confusion regarding PWM resolution and the difference between dividing by 2^n versus 2^n - 1 The Hardware Timer Perspective In fast PWM mode, the timer counts from 0 up to a “TOP” value and then overflows back to 0. For 8-bit PWM, TOP = 255. This gives you a counter range of 0–255 = 256 distinct counts. For 2-bit PWM, TOP = 3. This gives you a counter range of 0–3 = 4 distinct counts. Thus, in terms of raw timer ticks, there are 2^n counts Per cycle. The Duty Cycle Perspective When calculating duty cycle, we typically use: Duty Cycle (%)= (Compare Register Value/TOP) ×100. For 8-bit PWM, you divide by 255 (TOP = 255), so the highest compare value 255 yields 100 % duty cycle. For 2-bit PWM, you divide by 3 (TOP = 3), so a compare value of 3 yields 100 % duty cycle. If you were to divide by 2^n directly (e.g., 256 for 8-bit), the maximum compare value (255) would give (255/256)x 100 =~ 99.6% which technically matches clock ticks but doesn’t align with the usual definition of 100 % on hardware PWM outputs. Why It Matters 0 % duty cycle: Compare Register = 0. 100 % duty cycle: Compare Register = TOP (which is 2^n - 1). Users generally expect that the maximum compare setting translates to the output being fully ON (i.e., 100 %). Summary The timer truly counts 2^n steps (from 0 to 2^n−1). However, to get a duty cycle Percentage from 0 % to 100 %, you divide the compare value by 2^n - 1. That’s why for 8-bit PWM, you’ll see many references to dividing by 255, not 256.

Forum Search

Recent Posts

  • Answer to: Bluetooth Speaker won't turn on

    Translator Sorry, this i...

    By servitec , 1 month ago

  • Bluetooth Speaker won't turn on

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

    By servitec , 1 month ago

  • Answer to: Why Fluke multimeters are so expensive?

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

    By maryjlee , 4 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 , 4 months ago

  • Answer to: How can I safely power a BLDC motor from a hard disk drive?

    Use a small sensorless 3‑phase BLDC driver board (made ...

    By Divyam , 4 months ago

  • Answer to: Why Fluke multimeters are so expensive?

    Fluke meters are pricey because they’re engineered for ...

    By Kanishk , 4 months ago

  • How can I safely power a BLDC motor from a hard disk drive?

    I have a brushless DC motor taken from an old hard disk...

    By Anil_Tech , 4 months ago

  • Answer to: How can I interface an AI camera module with Arduino?

    Arduino Uno and Nano primarily function as control inte...

    By cooper , 4 months ago

  • Answer to: How can servo jitter be reduced in Arduino projects?

    Servo jitter in Arduino projects is usually caused by p...

    By Neeraj Dev , 4 months ago

Share:
Forum Information
Recent Posts
Unread Posts
Tags
  • 9 Forums
  • 233 Topics
  • 669 Posts
  • 2 Online
  • 235 Members
Our newest member: anselbevier
Latest Post: Bluetooth Speaker won't turn on
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  Powered by wpForo version 2.4.16

© 2026 eT Community • Built with GeneratePress