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]] Order Geofoam Jalan Heavy Duty Kulon Progo DI Yogyakarta

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

 Sort Search Results by:


Page 3 / 3 Prev
Answer to: What’s the real impact of a broken neutral in a 3-phase 4-wire system?
Theoretical questions
LogicLab
1 year ago
4 Relevance
Yeah, losing the neutral in a 3-phase 4-wire system can cause major issues, especially if the loads aren’t balanced (which they usually aren't in real-world setups like homes or small businesses). What actually happens is this: the neutral point “floats” because there's no solid reference anymore. So instead of each phase staying around 230V, the voltages start to shift depending on the loads on each phase. Light load = lower voltage, Heavy load = higher voltage. In the worst cases, one phase might go up to nearly 400V—way more than your appliances are built for. As a result, you'll see major voltage fluctuations in your supply. There are protection relays and devices that can catch this (like a phase failure relay or neutral monitoring), but not every system has them—especially older setups. In short: broken neutral = unpredictable and often destructive voltage swings. A real pain to troubleshoot if you don’t catch it quickly.
View entire post
Answer to: What are your opinions about Teensy boards?
Arduino
Admin
2 years ago
4 Relevance
Teensy boards are incredible, especially for projects that need more power or advanced features. Here’s how they compare to Arduino: Performance: Teensy boards (like Teensy 4.1) have significantly more processing power. For example, Teensy 4.1 runs at 600 MHz, compared to Arduino Uno’s 16 MHz. They’re great for applications like real-time audio processing, high-speed data acquisition, or complex robotics. Features: Teensy supports USB HID devices out of the box, so you can create custom keyboards, MIDI controllers, or gamepads. It has more RAM, Flash memory, and better peripherals compared to most Arduino boards. Ease of Use: Teensy integrates well with the Arduino IDE via the Teensyduino plugin, so transitioning from Arduino is pretty seamless. However, it does require a slightly steeper learning curve if you’re using its advanced features. If you’re working on high-performance or resource-heavy projects, Teensy is absolutely worth it
View entire post
Answer to: Effect of PWM frequency on motors and LEDs
Theoretical questions
nathan
11 months ago
3 Relevance
PWM frequency doesn’t change the basic control of speed or brightness (that’s handled by Duty cycle), but it does affect how smooth and practical the control feels. For DC motors, too low a frequency can cause audible whining and jerky torque, while using a frequency in the 2–20 kHz range keeps operation smoother and moves the noise above the human hearing range. Going too high can reduce efficiency due to increased switching losses. For LEDs, low frequencies below ~100 Hz cause visible flicker, which is unpleasant and can be noticeable on cameras as well. Frequencies in the 200–500 Hz range reduce flicker significantly, but for professional lighting or DIsplay applications, 1 kHz and above is generally preferred to ensure flicker-free performance.
View entire post
Answer to: What exactly is PWM resolution ?
Hardware/Schematic
catElectroni...
2 years ago
3 Relevance
To put this PWM resolution concept into a practical context: If you’re DImming an LED with an Arduino UNO’s 8-bit PWM, you might see noticeable brightness steps when changing the Duty cycle. This is because each step is about 0.4% of the total brightness. With the ESP32’s 16-bit PWM, each step is only 0.0015%, so the LED brightness change is much smoother and almost imperceptible. This is crucial if you’re working on projects that require precise control, like mood lighting or audio signal modulation. But keep in mind, that the lower frequency at higher resolutions might introduce visible flicker in LEDs, so you’ll need to find a balance between resolution and frequency depending on your application.
View entire post
Answer to: analogWrite() Used on Digital Pins Instead of Analog Pins?
Programming
catElectroni...
2 years ago
3 Relevance
To expand on what @ankunegi said, here’s a simple example of how analogWrite() works on a PWM pin in practice: void setup() { pinMode(9, OUTPUT); // Pin 9 supports PWM } void loop() { analogWrite(9, 128); // 50% Duty cycle (128 out of 255) } This will make an LED connected to pin 9 glow at half brightness because the average voltage is 2.5V (on a 5V Arduino). If you try this on an analog pin like A0, it won’t work because analog pins are meant for input, not output. It’s just a quirk of how Arduino names function. Once you get used to it, it’s not a big deal.
View entire post
RE: What exactly is PWM resolution ?
Hardware/Schematic
Admin
2 years ago
3 Relevance
The microcontroller uses a timer to generate the PWM signal. The timer counts up from 0 to a maximum value. When it reaches the maximum, it resets to 0 and starts counting again. The Duty cycle is determined by the value at which the timer output switches from low to high. For 8-bit resolution (UNO): The timer counts from 0 to 255. To achieve the maximum PWM frequency, the timer should overflow as quickly as possible. So, the maximum PWM frequency is the clock frequency DIvided by the maximum count: 16 MHz / 256 = 62.5 kHz. For 16-bit resolution (ESP32): The timer counts from 0 to 65,535. Using the same logic, the maximum PWM frequency is 16 MHz / 65,536 = 244 Hz. In essence, higher resolution requires the timer to count to a larger number before overflowing, which takes more time. This DIrectly limits the maximum possible PWM frequency.
View entire post
Answer to: analogWrite() Used on Digital Pins Instead of Analog Pins?
Programming
Admin
2 years ago
3 Relevance
... the DIgital pins ON and OFF at a very high frequency creating a dummy analog signal. And there are 6 DIgital pins on UNO that supports this behavior- with a "~" symbol next to them (like 3, 5, 6, 9, 10, 11) When you use analogWrite(pin, value), you're controlling the Duty cycle of the PWM signal A value of 0 means the pin is off all the time. A value of 255 means the pin is on all the time. Values in between control how long the pin stays on during each cycle, effectively simulating an analog voltage between 0 and 5V. So analogWrite function has nothing ...
View entire post
Page 3 / 3 Prev

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
  • 3 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.2

© 2026 eT Community • Built with GeneratePress