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 RAB Renovasi Plafon Board Terpercaya Jebres Surakarta

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

 Sort Search Results by:


Page 5 / 7 Prev Next
Arduino UNO R4 Wi-Fi Project ideas!
Arduino
Daniel
2 years ago
1 Relevance
Hi everyone, I recently received my first Arduino UNO R4 WiFi, and I am very excited to test its capabilities. I would love to explore some project ideas using this Board. If you have any suggestions for interesting projects, whether they involve IoT applications, sensor integration, data logging, or interactive features, please share!
View entire post
What is EEPROM in Arduino and how to use it?
Hardware/Schematic
techy ishan
2 years ago
1 Relevance
Hi everyone, I’m new to Arduino and would like to understand how EEPROM works. Can someone explain what EEPROM is and how it differs from other types of memory on the Arduino? I’d appreciate some guidance on how to store and retrieve data using EEPROM, especially to ensure the data remains after powering off the Board. I’ve also read that EEPROM can only be programmed a limited number of times. Is that true? If so, could you explain a bit more about it? Thank you
View entire post
Answer to: Do I really need anti-static precautions when handling ICs?
Theoretical questions
Deboojit
12 months ago
1 Relevance
... The damage might not be immediate or obvious; it often causes latent failures that show up later during operation. Certain types of chips are more sensitive than others—CMOS devices, including many logic ICs and virtually all microcontrollers, are especially vulnerable due to their delicate internal structures. In contrast, older TTL logic chips (like the 74LS series) are somewhat more robust but still not immune. If the IC is already soldered onto a Board, the risk is lower because the surrounding circuitry and ground planes can help dissipate any static ...
View entire post
Do I really need anti-static precautions when handling ICs?
Theoretical questions
Techyguy
12 months ago
1 Relevance
I'm working on a small project with some ICs (mostly logic chips and a microcontroller), and I keep seeing WArnings about static electricity damaging components. But honestly, I’ve handled a lot of parts with bare hands and never had one fail—at least not immediately. That got me wondering: Can static electricity actually kill an IC just from touching it? Are certain types of chips (like CMOS or microcontrollers) more sensitive? If the IC is already soldered onto a Board, is it still at risk? I don’t have a proper anti-static mat or wrist strap ...
View entire post
Answer to: Best Cheap as Possible ESP32 Boards?
ESP32
Harper
1 year ago
1 Relevance
I've tested several ESP32 Boards, both branded and ultra-cheap clones, for basic IoT projects like Wi-Fi control, sensor data logging, and general experimentation. In terms of price-to-performance, the ESP32 DevKit V1 (based on the ESP32-WROOM-32 module) remains one of the most reliable and affordable options. You can usually find it for around $4–5 on AliExpress or Amazon. It offers stable Wi-Fi, full GPIO access, and solid support in both the Arduino and ESP-IDF environments. However, some clones use low-quality voltage regulators (like the AMS1117), which can heat up or cause brownouts during Wi-Fi transmission. Another good option is the ESP32-C3 dev Board, which usually costs around $3–4. It uses a RISC-V core and supports native USB, which eliminates the need for a separate USB-to-Serial chip. It's also more power-efficient, making it a great choice for battery-powered applications. The only downside is that it has fewer GPIO pins and lacks dual-core performance. If you're willing to spend a little more, the ESP32-S3 Boards (typically priced at $5–7) are also worth considering. They offer advanced features like USB-OTG and AI acceleration but may be overkill for basic use cases. As for ultra-cheap Boards from platforms like AliExpress or Amazon, they do work—but with some caveats. While they’re perfectly usable for most beginner and intermediate projects, you may encounter issues such as weak voltage regulators, noisy ADC readings due to poor PCB layout, and lack of auto-reset for uploading code. Some of these Boards also come with obscure USB-to-Serial chips, so it's better to stick with ones using CH340 or CP2102. When buying ultra-budget Boards, look for those that use genuine Espressif modules (usually marked “ESP32-WROOM” on the metal shield), and always check seller ratings or community feedback. I hope this information will help you choose the right one!
View entire post
RE: New Pi Pico 2 by Raspberry Pi—What are your opinions?
RPi Pico
nathan
2 years ago
1 Relevance
@sebastian Talk about being negative. It's priced at $5- $1 more than the original Pico and WAy cheaper than any original Arduino Board. And did you forget about RISC-V. I don't think any sane person will prefer PICO 1 over PICO 2
View entire post
RE: Is Arduino still relevant in 2024?
Arduino
Harper
2 years ago
1 Relevance
I totally agree with Jeff. Building a custom PCB including a microcontroller chip for a personal project such as automating your room is one thing and you may even save a few bucks than buying the dev Board separately. But when you WAnt to sell this product to consumers that's a whole different story. You can't possibly think that assembling some parts on 10 PCBs and saving money is anything like doing business. It takes a lot to create a profitable business out of this.
View entire post
Maximum current limitation of a digital pin on UNO
Hardware/Schematic
Harper
2 years ago
1 Relevance
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?
View entire post
RE: new to electronics and needing some guidance with a circuit . 555 LED lights
Circuits and Projects
basilwatson
1 year ago
1 Relevance
@ankunegi Thank you Really appreciative of the reply. Interesting about "Ai" ,,,i asked it many times and the circuits I got back even I could see were Junk So here is the Tinkercad link ... No bread Board, just in desperation , randomly joining things together to see if I get a response. I hope this link works .... Now bass usual for me ,,, I have probably , A; over looked the obvious ...B; done something stupid, Im looking forward to finding out .... My guess is Ive got the pins round the wrong WAy.... Thanks in advance Stephen
View entire post
Answer to: How does Arduino handle floating-point operations?
Programming
Admin
1 year ago
1 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: Arduino vs Teensy: Why will anyone choose Uno or Nano?
Arduino
Admin
1 year ago
1 Relevance
Spoke like a beginner 😉 Teensy definitely has WAy more power—faster processor, more memory, better I/O—but honestly, most people don’t need all that for basic projects. Uno and Nano are just simple and work straight out of the box. Like if you're just blinking LEDs, reading sensors, or making a small robot, a Nano does the job perfectly. Also, there’s just so much support for Uno and Nano. Almost every beginner tutorial or sensor breakout example online is written for those Boards. You plug it in, upload the sketch, and it works. Teensy is awesome ...
View entire post
Answer to: Good Arduino IoT projects for a beginner?
Arduino
Admin
1 year ago
1 Relevance
Start with these simple IoT projectsJust type the project name in Google search.Tip: The best WAy to dive into IoT projects is to use an ESP32 Board and program it using Arduino IDE. Smart Plant Monitoring SystemMonitor soil moisture, temperature, and humidity, and send data to the server in real time. Wi-Fi Controlled Home AutomationUse an Arduino and a relay module to control lights and fans via a web browser IoT Weather Station with DHT & BMP SensorsCreate a weather station that logs humidity, temperature, and pressure online using sensors li ...
View entire post
Answer to: How do you design a PCB for high-frequency circuits?
Theoretical questions
LogicLab
1 year ago
1 Relevance
You're absolutely right—when moving into high-frequency PCB design (in the MHz to GHz range), layout becomes critical for ensuring signal integrity and performance. At these frequencies, traces behave like transmission lines, so maintaining controlled impedance is essential. For most RF applications, a 50-ohm microstrip or stripline trace is standard, and you’ll need to calculate trace width based on your PCB stack-up, dielectric material, and copper thickness. Trace layout should avoid right-angle bends, use 45° angles or curves, and keep high-speed traces as short and direct as possible. Differential signals (like USB or LVDS) require matched trace lengths and consistent spacing to maintain impedance and minimize skew. The PCB stack-up plays a huge role in high-frequency performance. It's best to place signal layers adjacent to solid ground planes to provide a continuous return path and minimize loop area, which helps reduce EMI. A 4-layer or higher Board with dedicated power and ground planes is generally recommended. When choosing a stack-up, consult your PCB fabricator to ensure the dielectric thicknesses and materials support your impedance requirements. Common mistakes in high-speed PCB design include failing to provide a solid ground reference under signal traces, using excessive or poorly placed vias that introduce unwanted inductance, and improperly terminating high-speed lines, which can result in reflections and ringing. Power integrity is also crucial—decoupling capacitors should be placed close to power pins, and using a mix of values helps cover a wider frequency range. Lastly, improper grounding between analog and digital sections can lead to noise coupling, so careful partitioning or single-point grounding is advised. With proper attention to these details and the use of simulation tools, designing high-frequency PCBs becomes much more manageable and repeatable.
View entire post
Answer to: Raspberry Pi Pico vs ESP32?
RPi Pico
DabieTech
1 year ago
1 Relevance
If you prefer a Board that maintains a workflow similar to the Arduino Uno or Nano, the Raspberry Pi Pico offers a familiar development experience. It supports both C/C++ and MicroPython, making it a great option for experimenting with new programming environments while retaining a simple and straightforward approach to hardware control. Its Programmable I/O (PIO) feature also opens the door to custom protocol development and precise timing applications, which aren’t easily achievable on traditional Arduino Boards. On the other hand, if you're ready to explore more advanced capabilities such as Wi-Fi and Bluetooth connectivity, multitasking, or real-time data streaming, the ESP32 provides significantly more flexibility. It supports multiple programming environments—including the Arduino IDE—while offering powerful hardware features like dual-core processing, built-in wireless communication, touch sensors, and high-resolution ADCs. While the development process might initially seem more involved due to the richer feature set, the ESP32 is well-suited for complex or connected projects and offers long-term value for those interested in expanding their skill set.
View entire post
How to interface a temperature sensor with an ESP32?
ESP32
Electronix
1 year ago
1 Relevance
Hi everyone, I'm working on my college project titled "Temperature Monitoring System using ESP32", where I'm using a DHT11 sensor to measure temperature and humidity. I connected the sensor to my ESP32 Board as follows: 1. VCC to 3.3V 2. GND to GND 2. DATA to GPIO4 I installed the Adafruit DHT library, uploaded the example sketch, and opened the Serial Monitor. But instead of getting temperature readings, it keeps printing Failed to read from DHT sensor! And sometimes it shows 0.00 °C, which is wrong. I tried the following, but still couldn’t get consistent results: 1. Double-checked wiring 2. Used different GPIO pins 3. Increased delay between reads Any help would be greatly appreciated!
View entire post
Page 5 / 7 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 , 4 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 , 8 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
  • 277 Topics
  • 743 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