Skip to content
eT Community

eT Community

  • Forums
  • What’s New
  • Members
  • Recent Posts
  • Website
Forums
Search
 
Notifications
Clear all

Search result for:  WA 0859 3970 0884 Biaya Bikin Gerbang Otomatis Menggunakan Arduino Murah Tawangsari Sukoharjo

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

 Sort Search Results by:


Page 5 / 7 Prev Next
RE: Is Arduino still relevant in 2024?
Arduino
Jeffmon
2 years ago
2 Relevance
Hi guys The popularity and ease of use of the IDE dose make it a very good learning tool. There are however several other platforms that are just as versatile. For instance the Microchip family do have excellent IDE and a big plus is the simulator/debugger. This alone makes the Microchip platform a brilliant piece of free software. Back to the Arduino, it will be around for a long while to come. I am not yet fluent in Arduino and the C language but I am working to change that. Happy coding. It is the WAy of the future Jeff Monegal
View entire post
Answer to: Is Arduino still relevant in 2024?
Arduino
Amelia
2 years ago
2 Relevance
@jeffmon I agree. However, I believe the popularity of Arduino is not just because of the hardware but mainly due to its user-friendly IDE. It supports all major boards now be it ESP32, blue pill, etc. And it has become a standard to give Arduino IDE support on new boards. Makes me think: they have taken away the basic Embedded level learning curve.
View entire post
Answer to: Difference Between delay() and millis() in Arduino?
Programming
Admin
1 year ago
2 Relevance
In-depth explanation of delay() VS millis() in Arduino: What is delay()?The delay(ms) function is a simple WAy to pause your program for a specific duration (in milliseconds). While using delay(), the microcontroller does nothing except WAit, effectively blocking all other code execution. Example: Blinking an LED using delay()Here’s a basic example of using delay() to blink an LED every second: const int ledPin = 13; void setup() { pinMode(ledPin, OUTPUT); } void loop() { digitalWrite(ledPin, HIGH); // Turn LED on delay(1000); // WAit for ...
View entire post
Answer to: STM32 vs Arduino: Which One is Better?
Hardware/Schematic
Sebastian
2 years ago
2 Relevance
... whole mindset. You’ll need to read datasheets, configure clock settings, and deal with low-level programming. The power is there, but it comes at the cost of simplicity. My advice: If you’re comfortable diving deep into hardware-level programming and WAnt to push your projects further, give STM32 a shot. Otherwise, maybe try a more powerful Arduino board first, like the Arduino Due.
View entire post
RE: Clock Frequency Discrepancy: Arduino Uno vs. Arduino Nano
Hardware/Schematic
TechTalks
2 years ago
1 Relevance
@ankunegi They used a resonator due to the form factor? I just observed it in Mini as well. Whereas Mega has a crystal oscillator.
View entire post
Answer to: What is EEPROM in Arduino and how to use it?
Hardware/Schematic
Amelia
11 months ago
1 Relevance
It’s more like ROM—the kind of memory you use when you need the data to stick around, even if power is lost. Think of it like writing something on your hand before going to sleep so you don’t forget it in the morning. On an Arduino, EEPROM is perfect for saving things like strings, integers, or configuration values that you WAnt to recall the next time the board powers up. Unlike SRAM (which gets cleared when the board resets) or Flash (which mainly holds your program), EEPROM gives you a small but persistent space for your own data.
View entire post
Why do people use Teensy for custom keyboards instead of Arduino boards?
ESP32
electronic_G...
11 months ago
1 Relevance
I’ve seen many DIY keyboard projects where people use a Teensy microcontroller rather than popular Arduino boards like the Uno, Nano, or Pro Mini. What makes the Teensy a better choice for keyboards? Is it related to USB support, performance, or something else.
View entire post
Answer to: Arduino UNO R4 Wi-Fi Project ideas!
Arduino
Admin
2 years ago
2 Relevance
... fans, or other home appliances through Wi-Fi using the board and relays. Build a system to monitor air quality (e.g., CO2 levels, particulate matter). The UNO can send data to the cloud or a local display. Create an automated irrigation system using soil moisture sensors to trigger WAter pumps based on soil conditions. You can control the system remotely using Wi-Fi. Build a robot that can be controlled via a smartphone or web browser. Build a smart doorbell that sends a notification or plays a sound on your phone when someone presses it. Use a PIR sensor t ...
View entire post
Answer to: Why should one buy original Arduino boards and not clones?
Arduino
Jignesh
2 years ago
2 Relevance
Honestly, it comes down to a few key factors. I’ve used both original Arduinos and clones, and here’s what I’ve noticed: 1. Quality of Components:Original boards are made with high-quality components and go through strict testing. That means they're reliable and tend to last longer. With clones, the manufacturers often cut costs by using cheaper components, which sometimes leads to issues like bad voltage regulation or even random failures. It’s a bit of a gamble—you might get a good clone, or you might end up with something less reliable. 2. Support and Community:By buying an original board, you’re supporting the Arduino team and their continued development of the platform. Plus, you can rely on their official support if something goes wrong. With clones, you’re on your own, and while the community can help, it’s not the same as having official support. 3. Price:The big reason people go for clones is price—they’re much cheaper, and for simple or throwaway projects, they can be a good choice. But for anything critical where reliability matters, I'd stick with the original. A few bucks saved upfront isn’t worth the headache of dealing with potential issues down the line. Clones are legal as long as they don’t use the Arduino logo or branding, but some knock-offs illegally slap the Arduino logo on them, which can be misleading. Supporting the original also helps the team keep developing new boards and features.
View entire post
RE: Is Arduino still relevant in 2024?
Arduino
Jeffmon
2 years ago
2 Relevance
... charger that I WAs recently involved in ran into over $23,000. The unit used a PIC Microcontroller and could charge 4 batteries of all construction types. 70% of this charge WAs in the 9 prototypes that were required. The PCB engineer and the software engineer put in many, many hours. Have you seen the dollars amount an engineer commands these days? My job WAs simple. I designed the power switching interface between the Microcontroller and the battery. An Arduino MEGA would have made this task much cheaper but we are aligned with Microchip and are ther ...
View entire post
Answer to: Difference between EEPROM and Flash?
Hardware/Schematic
Admin
2 years ago
2 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: Can I power my Arduino using a phone charger via USB?
Theoretical questions
Mehjabeen
1 year ago
1 Relevance
A standard 5V phone charger (with at least 500 mA output) and a proper USB cable are usually perfectly fine for powering an Arduino Uno or Nano via USB. Just double-check the specifications of your charger to be sure it's not outputting more than 5V
View entire post
Can I power my Arduino using a phone charger via USB?
Theoretical questions
Rahav
1 year ago
1 Relevance
I'm wondering if it's safe and reliable to power an Arduino board (like Uno or Nano) using a regular phone charger through the USB port. Are there any voltage or current considerations I should keep in mind?
View entire post
Answer to: STM32 vs Arduino: Which One is Better?
Hardware/Schematic
Kanishk
1 year ago
1 Relevance
Arduino is excellent for beginners, rapid prototyping, and educational purposes. Its simplicity, massive community support, and easy-to-use libraries make it ideal for getting started with embedded systems. You can quickly connect sensors, write basic logic, and see results — no steep learning curve involved. STM32, however, is a more powerful and professional-grade platform. It’s widely used in industrial, automotive, and consumer electronics (e.g., car ECUs, VR systems like Oculus, drones, and medical devices). By working with STM32, you gain exposure to ARM Cortex-M cores, which are the backbone of many real-world embedded applications.
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 , 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
  • 2 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