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]] Order Kitchen Set Rumah Bergaransi Riverside Pluit Jakarta Utara

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

 Sort Search Results by:


Page 1 / 4 Next
Answer to: Can i use EN pins for PWM speed control in L298N Motor driver?
Hardware/Schematic
Admin
2 years ago
10 Relevance
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
View entire post
What does it mean to “set the trigger” on an oscilloscope?
Equipments
Nitin arora
1 year ago
9 Relevance
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?
View entire post
What is the difference between low-pass and high-pass filters?
Theoretical questions
CircuitFlow
1 year ago
5 Relevance
I’m trying to understand the fundamental differences between low-pass and high-pass electronic filters. I gather that a low-pass filter allows low frequencies to pass while attenuating high frequencies, whereas a high-pass filter does the opposite. I’m particularly interested in how their circuit designs differ, their common applications, and how factors like cutoff frequency and filter Order affect their performance. Any insights or explanations would be greatly appreciated!
View entire post
Answer to: What are interrupts in Arduino, and how are they used?
Arduino
Admin
1 year ago
9 Relevance
... to bake a cake. Your loop() function is carefully measuring flour, mixing ingredients, and so on. Now, what if the doorbell rings? Without interrupts (the loop() WAy): You'd have to finish a major step in your recipe (like mixing the batter) and then quickly run to the door to check if anyone is there. If your recipe step takes a long time, your visitor might get impatient and leave. This is called polling – repeatedly checking the state of something. With interrupts: The moment the doorbell rings, you'd immediately pause what you're doing (even if you're ...
View entire post
Answer to: What does it mean to “set the trigger” on an oscilloscope?
Equipments
Deboojit
1 year ago
7 Relevance
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 ...
View entire post
DIY an RF power meter Based on STM32F103 + MAX4003
Hardware/Schematic
anselbevier
4 months ago
7 Relevance
... 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 ...
View entire post
Answer to: Is it safe to use the multimeter’s amp setting on live circuits?
Equipments
Neeraj Dev
10 months ago
2 Relevance
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.”
View entire post
Page 1 / 4 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
  • 1 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