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]] Vendor Pengadaan Grass Block Heavy Duty Bandung Barat Jawa Barat

 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: Difference between EEPROM and Flash?
Hardware/Schematic
Admin
2 years ago
8 Relevance
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.
View entire post
Answer to: Why Fluke multimeters are so expensive?
Equipments
maryjlee
9 months ago
7 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: How to Improve the Range of an NRF24L01 Wireless Module?
Theoretical questions
Sophie
11 months ago
4 Relevance
... are sensitive to voltage drops. Next, antenna orientation and placement matter a lot—keep it upright, away from metal objects, and use modules with an external antenna (PA+LNA version) if you need longer range. At the software side, lowering the data rate to 250 kbps and setting the power level to maximum usually gives a big improvement. Also try using a channel that’s not overlapping with busy Wi-Fi (e.g., around channel 76). Finally, remember that WAlls, metal, and people can Block 2.4 GHz signals, so even small changes in placement can make a noticeabl ...
View entire post
Answer to: How does an operational amplifier (op-amp) work?
Theoretical questions
Amelia
1 year ago
4 Relevance
Operational amplifiers (op-amps) are essentially extremely powerful voltage amplifiers. They amplify the difference between two input voltages by a very large factor. However, this high gain is difficult to control directly. To make op-amps useful, we introduce negative feedback. This means we feed a portion of the output signal back to the inverting input. This feedback loop forces the op-amp to behave predictably. A key consequence of negative feedback in some op-amp configurations is the creation of a virtual ground. When the non-inverting input is connected to ground and negative feedback is present, the op-amp actively works to keep the inverting input at the same potential as the non-inverting input (i.e., ground). This means the inverting input acts as if it's connected to ground, even though it's not physically connected. This virtual ground and negative feedback allow us to build various useful circuits: Amplifiers: By carefully choosing resistors in the feedback loop, we can precisely control the gain of the amplifier. Inverters: we can invert the polarity of a signal. Buffers: We can create circuits that isolate different parts of a system, preventing one part from affecting another. In essence, negative feedback and the resulting virtual ground are the key concepts that turn a simple, uncontrolled amplifier into a versatile building Block for electronics.
View entire post
Answer to: How to choose coupling capacitor sizes for an audio amplifier?
Theoretical questions
Deboojit
2 years ago
4 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 Raspberry Pi Replace a Home Router or Firewall?
RPi Pico
Divyam
9 months ago
4 Relevance
Yes, it’s definitely possible to turn a Raspberry Pi (especially Pi 4 or Pi 5) into a router or firewall using software like OpenWRT, Pi-hole, or pfSense (via ARM builds). The Pi 4/5’s Gigabit Ethernet and USB 3.0 ports allow decent throughput—around 600–900 Mbps in real-world tests—suitable for small to medium networks. However, it lacks hardware NAT acceleration and enterprise-grade security features, so performance may drop under Heavy traffic or multiple VPN connections. For basic routing, ad-blocking, and light firewall duties, it’s reliable and stable; for high-load or mission-critical use, a dedicated router or firewall appliance is still preferable.
View entire post
Answer to: How can I interface an AI camera module with Arduino?
Hardware/Schematic
Tech Geek
11 months ago
4 Relevance
AI camera modules like ESP32-CAM, HuskyLens, and OpenMV have their own onboard processors that handle Heavy tasks such as face recognition, object tracking, and color detection. An Arduino Uno or Nano doesn’t have the processing power or memory to run AI algorithms directly, so in this setup the Arduino mainly acts as a controller. The AI module does the image processing and then sends results (for example, "face detected" or "object at X,Y") to the Arduino. For interfacing, most of these modules support UART (serial) as the primary method of communication, and some also support I2C or SPI depending on the module. UART is the simplest and most commonly used for sending recognition results to Arduino. The main limitation of using Arduino with these AI modules is that Arduino can’t handle raw image data or complex computations—it can only receive processed results and take actions (like moving a motor, turning on LEDs, etc.). If you need to do more advanced data handling, real-time image streaming, or run multiple AI tasks at once, boards like ESP32 or Raspberry Pi are better suited because they have more processing power and memory.
View entire post
Answer to: Can I use Raspberry Pi as a replacement for a desktop PC?
RPi Pico
abhinav sing...
12 months ago
4 Relevance
I recently found myself in a similar situation when my old laptop stopped working, so I gave my new Raspberry Pi 5 a shot as a temporary desktop replacement. For basic tasks like browsing the web, checking emails, and doing some light coding, it’s been surprisingly capable. The performance is quite decent, especially with an SSD and a good cooling setup. However, I did notice that it struggles a bit with Heavy multitasking or media-rich websites. For longer-term use, I think it really depends on your workload. If most of your tasks are browser-based or involve lightweight applications, it’s actually a practical and cost-effective solution. That said, there are some limitations in terms of software compatibility and overall responsiveness compared to a regular desktop or laptop. I’m curious to know how others are finding the Pi 5 for daily use.
View entire post
Answer to: Best microcontroller or SBC for robotics?
Theoretical questions
nathan
12 months ago
4 Relevance
If your robot needs both real-time motor control and higher-level processing (like computer vision or LIDAR), I’d recommend a hybrid setup. Use a Teensy 4.1 (or an STM32 if you're comfortable with it) to handle motor control, encoders, and IMU. Teensy is Arduino-compatible but much faster — 600 MHz and great real-time performance. Pair it with a Jetson Nano (or Raspberry Pi if you're not doing Heavy vision tasks) for computer vision, path planning, and data logging. Jetson Nano has GPU support and is great for running lightweight AI models or OpenCV. This combo gives you real-time performance where it matters and the flexibility of Linux for everything else. Communicate between the two using UART, I2C, or CAN depending on your latency needs. We've had good success with this kind of architecture in robotics projects using ROS. If you're using ROS2, check out micro-ROS for STM32 or rosserial for Teensy. Let me know if you need example setups or wiring tips.
View entire post
Answer to: Raspberry Pi OS vs Ubuntu vs DietPi — Which one is better?
RPi Pico
Dinesh bhard...
1 year ago
4 Relevance
I’ve tested all three — Raspberry Pi OS, Ubuntu, and DietPi — and honestly, each one has its strengths depending on what you’re trying to do. If you're using a lower-end model like the Pi 3 or Zero, DietPi is a beast in terms of performance. It's super lightweight and boots fast, with very minimal background processes. Great for headless or server-style setups. Raspberry Pi OS is the most balanced in my opinion. It’s stable, well-supported, and has excellent compatibility with GPIO, camera modules, and most accessories. Plus, it’s officially maintained by the Pi Foundation, so updates and long-term support are pretty solid. Ubuntu (especially Server) is decent, but I’ve found it to be a bit heavier on Pi 3 and not ideal for Zero. It works better on Pi 4, and is nice if you're already used to Ubuntu on desktops or other servers. That said, sometimes peripherals or GPIO need extra tweaks to work smoothly. In terms of ease of use — Pi OS with Desktop is very beginner-friendly. DietPi is command-line based but has a great first-boot installer that lets you choose only what you need, so it’s pretty efficient. Ubuntu is more for those who are already comfortable with Linux. For community and support, Pi OS is the winner. Tons of tutorials, help forums, and guides tailored specifically to the Pi. DietPi and Ubuntu both have good communities too, but they’re a bit more general. My personal picks: For simple or GPIO-heavy projects → Raspberry Pi OS For lightweight, headless, or server projects → DietPi For more advanced server use on Pi 4 → Ubuntu Server Hope that helps — happy to share more if you’ve got a specific use case in mind!
View entire post
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
Page 2 / 3 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
  • 1 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