Skip to content
eT Community

eT Community

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

Search result for:  WA 0852 2611 9277 [[GLORION]] Ahli Kitchen Set Minimalis Untuk Dapur Sempit Mega City Bekasi

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

 Sort Search Results by:


Page 2 / 4 Prev Next
Can Raspberry Pi Replace a Home Router or Firewall?
RPi Pico
Bhavish
1 year ago
4 Relevance
I’ve been exploring more advanced uses for my Raspberry Pi and WAs wondering if it’s possible to replace a standard home router or Set it up as a network firewall. I understand that the Pi has Ethernet and Wi-Fi capabilities, and with the right software like OpenWRT or Pi-hole, it seems doable. Has anyone here successfully Set up a Raspberry Pi (especially models like the Pi 4 or Pi 5) as a full-fledged router or firewall? How well does it handle real-world network traffic and multiple devices? Also, what are the limitations in terms of speed, security, and ...
View entire post
Answer to: Raspberry Pi Pico vs ESP32?
RPi Pico
DabieTech
1 year ago
4 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
Answer to: How to Identify the Neutral Wire Using a Multimeter?
Equipments
Kanishk
2 years ago
4 Relevance
This is the safest option to identify the Neutral wire using a multimeter: 1. Set Up Your Multimeter: Set your multimeter to AC voltage mode (V~). Choose a range higher than your supply voltage (e.g., 250V for 220V systems). Insert the black probe in COM and the red probe in V/Ω. 2. Identify the Live Wire: Place the black probe on a known earth source (e.g., a metallic pipe or grounded screw). Use the red probe to measure each wire. Live to Earth = ~220V (or 110V) Neutral to Earth = 0V - 5V Earth to Earth = 0V The wire showing the highest voltage (~220V or 110V) is Live. 3. Identify Neutral vs. Earth: Measure the voltage between the remaining two wires. Neutral to Earth should show 0V - 5V due to minor voltage drop. Earth to Live should still show ~220V (or 110V). The wire showing nearly 0V relative to Earth is the actual Earth wire.
View entire post
Answer to: How to Identify the Neutral Wire Using a Multimeter?
Equipments
Admin
2 years ago
4 Relevance
Hey there! Here's a quick, step-by-step guide to identifying live, neutral, and earth wires using a digital multimeter: Set Up Your Multimeter:Choose the AC voltage mode and Set the range higher than your local supply (e.g., 220V or 110V). Identify the Live Wire: Label your three wires as A, B, and C. Measure the voltage between A and B, B and C, and A and C. The pair that shows ~220V (or 110V) contains the Live and Neutral wires. For example: 220V between A and B i.e., one of them is live. Then, measure between one of these (A) and the third remaining wire (C). If A to C also reads close to 220V (or 110V), then A is likely to live. If it’s much lower (around 1-5V), then the live wire is the other one (B). Determine Neutral vs. Earth: Now measure the voltage between the identified live wire and the remaining two wires i.e., first between A and B, then between A and C The wire with a lower voltage difference (around 1-5V) compared to the live wire is neutral. For example: Bw A and B = 215 and BW A and C = 220. In this case, wire B is neutral The other wire, showing nearly 0V less than the neutral is your Earth i.e., wire C is Earth. Keep in mind: Ideally, live should be around 220V (or 110V), while neutral and earth are close to 0V (with a slight drop of 1-5V on neutral due to resistance). For a deeper dive and more detailed instructions, check out this article: How to Identify Live, Neutral, and Earth Using a Multimeter.
View entire post
Answer to: Setting multiple pins as OUTPUT
Programming
nathan
2 years ago
4 Relevance
Here's an example using a for loop to configure 8 digital pins (from pin 2 to pin 9) as outputs: int ledPins[] = {2, 3, 4, 5, 6, 7, 8, 9}; // Array of pin numbers void Setup() { for (int i = 0; i < 8; i++) { pinMode(ledPins[i], OUTPUT); // Set each pin as an output } } void loop() { // Your code to control LEDs goes here } If the pins are not in a series, you can still use an array: int ledPins[] = {2, 5, 7, 8, 10, 12, 13, A0}; // Array of specific pin numbers void Setup() { for (int i = 0; i < 8; i++) { pinMode(ledPins[i], OUTPUT); // Set each specified pin as an output } } void loop() { // Your code to control LEDs goes here }
View entire post
RE: Is Arduino still relevant in 2024?
Arduino
Jeffmon
2 years ago
3 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: Is Arduino still relevant in 2024?
Arduino
Jeffmon
2 years ago
3 Relevance
... size. The same can be said for all Arduino units. The UNO, NANO, Mega etc are perfect as training aids and for those without the ability to produce pcbs but final products can be greatly reduced in size by using the ATMEL uController in custom pubs. I WAs an advocate for the PIC chip series and indeed I still am but since discovering Arduino I have become a fan. As yet in Arduino I am still a beginner but I have 50 years experience in designing electronics. Cheers Jeff Monegal
View entire post
Page 2 / 4 Prev Next

Forum Search

Recent Posts

  • RE: Beginner Arduino Course —Any Recommendations?

    @rahav When I started learning Arduino, I realized that...

    By playwithcircuit , 1 month ago

  • Admin

    RE: esp32 diagram connection

    @wmughal What do you want to achieve here exactly?

    By Admin , 5 months ago

  • DIY an RF power meter Based on STM32F103 + MAX4003

    As we all know, Radio frequency (RF) is a very importan...

    By anselbevier , 5 months ago

  • esp32 diagram connection

    i never use esp32 before i get diagram from claude i wa...

    By wmughal , 5 months ago

  • Admin

    RE: Motor driver not working properly

    @noochee Can you please share more details? Circuit dia...

    By Admin , 6 months ago

  • Motor driver not working properly

    I built an obstacle avoiding robotic car using Arduino,...

    By Noochee , 6 months ago

  • Answer to: Bluetooth Speaker won't turn on

    Translator Sorry, this i...

    By servitec , 7 months ago

  • Bluetooth Speaker won't turn on

    I know is not probably the best place for a newbie, the...

    By servitec , 7 months ago

  • Answer to: Why Fluke multimeters are so expensive?

    Totally agree with the points above. In my experience, ...

    By maryjlee , 9 months ago

Share:
Forum Information
Recent Posts
Unread Posts
Tags
  • 9 Forums
  • 310 Topics
  • 777 Posts
  • 4 Online
  • 297 Members
Our newest member: Dye18
Latest Post: Beginner Arduino Course —Any Recommendations?
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.5

© 2026 eT Community • Built with GeneratePress