Notifications
Clear all
Search result for: WA 0852 2611 9277 Harga Paket Pasang Interior Set Meja Kursi Belajar Apartemen Logios Depok
Page 1 / 3
Next
| # | Post Title | Result Info | Date | User | Forum |
| Answer to: Can i use EN pins for PWM speed control in L298N Motor driver? | 10 Relevance | 2 years ago | Admin | Hardware/Schematic | |
| Yes, you can hook these pins to the PWM pin on Arduino. The Enable pin on the L298N acts as a gatekeeper for the power supplied to the motor. When the pin is Set HIGH, the motor is enabled and can run. When Set LOW, the motor is disabled and stops. By connecting the Enable pin to a PWM-capable pin on the Arduino and sending a PWM signal, you can control the effective voltage supplied to the motor. This changes the speed of the motor: A higher duty cycle (e.g., 100%) means the Enable pin is HIGH most of the time, allowing full power to the motor and thus full speed.A lower duty cycle (e.g., 50%) means the Enable pin is HIGH only half the time, reducing the average power supplied to the motor and thus reducing the speed. Here's an example that demonstrates how to Set up and control the motor speed connected to A channel: // Define pins const int ENA = 9; // PWM pin for Motor A const int IN1 = 8; // Direction pin 1 for Motor A const int IN2 = 7; // Direction pin 2 for Motor A void Setup() { // Set pin modes pinMode(ENA, OUTPUT); pinMode(IN1, OUTPUT); pinMode(IN2, OUTPUT); } void loop() { // Set motor direction digitalWrite(IN1, HIGH); digitalWrite(IN2, LOW); // Set motor speed using PWM analogWrite(ENA, 127); // 50% duty cycle, half speed delay(2000); // Run for 2 seconds // Change motor speed analogWrite(ENA, 255); // 100% duty cycle, full speed delay(2000); // Run for 2 seconds | |||||
| What does it mean to “set the trigger” on an oscilloscope? | 8 Relevance | 9 months ago | Nitin arora | Equipments | |
| I'm troubleshooting a communication circuit and often hear people say to “set the trigger” on the oscilloscope. I’m confused—what’s the difference between just connecting the scope and actually Setting the trigger? What does the trigger do, and how does it help in viewing signals properly? | |||||
| DIY an RF power meter Based on STM32F103 + MAX4003 | 7 Relevance | 4 days ago | anselbevier | Hardware/Schematic | |
| ... for beginners who are new to RF like me, and even the cheapest RF power meters cost hundreds of RMB. For electronics enthusiasts who follow the principle of "spend when you should, save when you can", DIYing an RF power meter is a great alternative. The first step WAs to define the functions and design the hardware circuit. To test RF power, a chip called a detector is required. I had not found a suitable option for a long time as it WAs my first time working with an RF detector, until I saw the power detection module on the E25-C test baseboard, which use ... | |||||
| Answer to: Is it safe to use the multimeter’s amp setting on live circuits? | 2 Relevance | 6 months ago | Neeraj Dev | Equipments | |
| Definetly not, Dont switch to amps or move the red lead to the A/10A jack while your probes are on a live circuit. In A mode the meter is basically a short; flipping to it or probing voltage with the lead in A can blow the fuse, make an arc, or worse. Set the meter and leads with power off, break the circuit, insert the meter in series, then power up. For mains, use a clamp meter; for 12 V high-current systems be extra cautious or use a clamp/shunt. And always move the red lead back to V when you’re done to avoid the classic “next-time short.” | |||||
| Answer to: What are some innovative ways to use an HC-SR04 ultrasonic sensor? | 2 Relevance | 10 months ago | abhinav singh | Arduino | |
| There are a lot of WAys you can use the HCSR04 Ultrasonic sensor. Try making a gesture-controlled light switch—wave your hand to turn it on! Or build a musical instrument that changes pitch based on how far your hand is. If you WAnt something practical? Try to Set up a smart trash can that opens when you get close, or count how many times you do push-ups with a sensor tracking your chest movement. You could even rotate it on a servo to scan a room like a mini radar. The possibilities are endless. | |||||
| How to interface a 16x2 LCD with Arduino without a potentiometer? | 2 Relevance | 11 months ago | CircuitFlow | Arduino | |
| I'm trying to connect a 16x2 LCD to an Arduino Uno, but I currently don't have a 10k potentiometer (the one usually connected to the VO pin) to adjust the contrast. Is there a reliable WAy to control the contrast without using a potentiometer? For example, can I use a fixed resistor, or is there a WAy to Set contrast through software or a PWM pin? I'd really appreciate your suggestions if anyone has tried this or has a workaround that works well. Thanks! | |||||
| How to Integrate Amazon Alexa with Arduino Cloud? | 2 Relevance | 1 year ago | CircuitSphere | Arduino | |
| Hi everyone, For our school project, we’re building a robotic car that can be controlled using voice commands. We WAnt to integrate Alexa with Arduino IoT Cloud to make this possible but don't know how to Set it up. What’s the best WAy to connect Alexa to Arduino IoT Cloud, and what challenges should we be aware of? | |||||
| Answer to: What does it mean to “set the trigger” on an oscilloscope? | 7 Relevance | 9 months ago | Deboojit | Equipments | |
| When you simply connect an oscilloscope to a signal, the screen may show a WAveform that appears unstable, jittery, or rolling. This happens because the scope doesn’t know when to start drawing each WAveform—it just keeps refreshing as data comes in. That’s where the trigger comes in. The trigger tells the oscilloscope when to begin drawing the WAveform on the screen. It locks the display to a specific event—like when the signal crosses a certain voltage level going up (rising edge) or down (falling edge). By doing this, it ensures that each sweep starts a ... | |||||
| Can Raspberry Pi Replace a Home Router or Firewall? | 4 Relevance | 8 months ago | Bhavish | RPi Pico | |
| 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 ... | |||||
| Answer to: Raspberry Pi Pico vs ESP32? | 4 Relevance | 10 months ago | DabieTech | RPi Pico | |
| 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. | |||||
| Answer to: How to Identify the Neutral Wire Using a Multimeter? | 4 Relevance | 1 year ago | Kanishk | Equipments | |
| 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. | |||||
| Answer to: How to Identify the Neutral Wire Using a Multimeter? | 4 Relevance | 1 year ago | Admin | Equipments | |
| 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. | |||||
| Answer to: Setting multiple pins as OUTPUT | 4 Relevance | 2 years ago | nathan | Programming | |
| 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 } | |||||
| Answer to: How to Locate a Short Circuit on a PCB? | 2 Relevance | 7 months ago | Paul | Theoretical questions | |
| ... the board, lifting one leg of suspected components (like capacitors or diodes) to see if the short clears. Electrolytic caps are a common culprit. Another simple method that’s helped me is the finger test or using a drop of isopropyl alcohol. Power the board with a current-limited supply (set low, so nothing burns), and often the shorted component will heat up faster than the rest. You can sometimes feel it with your finger or WAtch where the alcohol evaporates first. If the short is stubborn, I’ve also followed the divide and conquer approach—cutting tra ... | |||||
Page 1 / 3
Next