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]] Jual Geofoam Lightweight Fill Wilayah Way Kanan Lampung

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

 Sort Search Results by:


Page 5 / 6 Prev Next
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: 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: Where can I learn more about direct port manipulation for controlling GPIO pins?
Programming
Rashid
2 years ago
1 Relevance
This video is an absolute gold. Thank you for sharing it. To learn more about architecture, what's the best WAy?
View entire post
Answer to: How to use Arduino to read values from a potentiometer?
Arduino
Admin
1 year ago
1 Relevance
... input pin, like A0 on your Arduino This setup allows the potentiometer to act as a voltage divider, and the middle pin will give you a variable voltage between 0V and 5V as you turn the knob. Upload this program: const int potPin = A0; void setup() { Serial.begin(9600); } void loop() { int potValue = analogRead(potPin); // Read value (0–1023) Serial.println(potValue); // Output the value to Serial Monitor delay(100); // Small delay for readability } Once the code is uploaded, open the Serial Mo ...
View entire post
How can I run multiple tasks at once without using delay() in Arduino?
Arduino
J.Smith
1 year ago
1 Relevance
I'm working on an Arduino project where I need to run multiple tasks simultaneously—for example, blinking an LED, reading a sensor, and checking for button input. Initially, I used delay() for timing, but I realized it blocks the program and prevents other tasks from running smoothly. What is the recommended WAy to handle timing and run multiple tasks without using delay()?Should I use millis() or is there a better approach like using timers or a task scheduler? I'd appreciate examples or tips on how to structure the code for multitasking in Arduino.
View entire post
Answer to: How to interface stepper motor with Raspberry Pi Pico?
RPi Pico
Dinesh bhard...
1 year ago
1 Relevance
... unlike most Arduinos, which use 5V; therefore, it's essential to ensure your stepper driver is compatible. Fortunately, common drivers like the A4988, DRV8825, and even the ULN2003 (for 28BYJ-48 motors) work just fine with the Pico without level shifting in most cases. For wiring, I connected the STEP and DIR pins of the A4988 to GPIO14 and GPIO15 on the Pico, powered the motor using an external 12V supply, and tied the A4988’s ENABLE pin to ground for always-on operation. Since the Pico supports MicroPython, I used it to write a simple script that toggle ...
View entire post
Answer to: How does LoRa communication work?
Theoretical questions
Amelia
1 year ago
1 Relevance
You're right—LoRa is impressive regarding long-range, low-power communication, and the secret behind that is how it sends data. Instead of regular radio signals like Wi-Fi or Bluetooth, LoRa uses something called Chirp Spread Spectrum (CSS). This is a special WAy of sending data by using signals that "sweep" across a range of frequencies (called chirps). This makes the signal very tough against interference and noise, so even if it's weak, the receiver can still pick it up. That’s why LoRa can communicate over 10–15 km in rural areas and 2–5 km in cities, a ...
View entire post
How to use an NRF24L01 module for wireless communication?
Arduino
PCBChronicle...
1 year ago
1 Relevance
... so I’m wondering what the best WAy to wire them is, especially to avoid issues with voltage drops. If anyone has a simple example sketch or a reliable guide for basic communication between two modules, that would be a huge help. Also, are there any common mistakes or things I should WAtch out for when working with these modules? Any advice or suggestions would be greatly appreciated!
View entire post
Answer to: How to secure your IoT devices from hacking?
Theoretical questions
Philippe
1 year ago
1 Relevance
To secure your IoT devices from hacking, follow these seven steps before consulting an expert—most threats can be avoided this WAy: Change default usernames and passwords to strong, unique ones. Keep the firmware updated to patch known vulnerabilities. Use a separate network (such as a guest Wi-Fi) for IoT devices. Disable unused features like remote access or UPnP. Enable your router’s firewall and monitor network activity. Use WPA2 or WPA3 Wi-Fi security with a strong password. Research devices before buying—choose brands with good sec ...
View entire post
Why does my Servo motor Jitter instead of holding position?
Programming
hobart bess
1 year ago
1 Relevance
... servo motor powered from the Arduino's 5V pin Signal wire connected to pin 9 #include <Servo.h> Servo myServo; void setup() { myServo.attach(9); myServo.write(90); } void loop() { } I've tried adding delay(1000); in the loop, but that didn't help. Do I need a separate power source for the servo, or is there another WAy to fix the jitter? Any advice would be greatly appreciated.
View entire post
How does an operational amplifier (op-amp) work?
Theoretical questions
Jaden
1 year ago
1 Relevance
I understand the basics of electronics well enough, but for some reason, op-amps completely throw me off. I get that they amplify signals, but the whole idea of negative feedback, virtual ground, and different configurations just doesn’t click. Can someone break it down in a WAy that actually makes sense?
View entire post
Program to toggle LED state with a single button?
Programming
tricky_logic
1 year ago
1 Relevance
... tried using digitalRead() in a simple if condition, but I suspect I need to debounce the button properly. Should I use delay(), or is there a better approach using millis()? Here’s my basic code: const int buttonPin = 2; const int ledPin = 13; bool ledState = false; void setup() { pinMode(buttonPin, INPUT); pinMode(ledPin, OUTPUT); } void loop() { if (digitalRead(buttonPin) == HIGH) { ledState = !ledState; digitalWrite(ledPin, ledState); delay(200); // Debounce delay? } } Is there a more reliable ...
View entire post
Answer to: Difference Between delay() and millis() in Arduino?
Programming
Admin
1 year ago
1 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: RAM VS ROM VS Flash memory in Microcontrollers like Arduino?
Hardware/Schematic
Kanishk
1 year ago
1 Relevance
Think of these memory types in this WAy: const int myConstant = 42; // Stored in Flash (permanent) int myVariable = 10; // Stored in SRAM (temporary) EEPROM.write(0, 25); // Stored in EEPROM (permanent small data) Flash: Where the program itself is stored (const values stay here too). SRAM: Where runtime variables live (int myvariable). EEPROM: Stores values permanently (but with limited writes). ROM (bootloader in Flash): Loads your program when the board starts. If you turn off the power, only Flash and EEPROM keep their data, while S ...
View entire post
Page 5 / 6 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
  • 0 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.4

© 2026 eT Community • Built with GeneratePress