Notifications
Clear all
Search result for: WA 0821 1305 0400 [[ADEFA]] Vendor Jual Geocomposite Separasi Wilayah Way Kanan Lampung
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.
... but I’m not sure if that’s the only cause. Do I need to add debouncing components? If so, what’s the best WAy to debounce inputs for an SR latch—hardware (RC filter, Schmitt trigger) or software (if used with a microcontroller)?Also, could stray signals or improper pull-up/pull-down resistors be contributing?
... works in principle, but in real conditions (like with mechanical buttons or noisy signals), the output sometimes glitches or triggers multiple times.
What’s the best WAy to make this kind of edge detector more stable and reliable? Should I add filtering, debouncing, or maybe use a Schmitt trigger?
@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
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 ...
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 ...
... 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 ...
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.
... 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 ...
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 ...
... 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!
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 ...
... 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.
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?
... 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 ...