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 Biaya Renovasi Plafon PVC Online Terpercaya Sukamakmur Kabupaten Bogor

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

 Sort Search Results by:


Page 2 / 3 Prev Next
Why Fluke multimeters are so expensive?
Equipments
Bryan
2 years ago
2 Relevance
hey everyone, My old multimeter got damaged after I accidentally dropped it, so I started searching Online for a new one. I came across Fluke multimeters, but they seem much more expensive compared to other brands. Are they really worth the cost in terms of durability, accuracy, and features, or is it mostly about the brand name?
View entire post
RE: Why do some DC motors come with a capacitor across them while others do not?
Circuits and Projects
TechSpark
2 years ago
2 Relevance
@tech-geek Exactly! Even I hardly come across a DC motor with a capacitor across it when I buy them Online. But I remember this one time, I opened the plastic covering of a geared DC motor. Across the motor, there were two small caps.
View entire post
Where can I learn more about direct port manipulation for controlling GPIO pins?
Programming
Rashid
2 years ago
2 Relevance
Hi, I've been using the digitalWrite() function for pin manipulation, but I've heard that direct port manipulation might offer better speed and efficiency. I found some videos Online but the topic is hard to grasp. Any help would be appreciated.
View entire post
Answer to: new to electronics and needing some guidance with a circuit . 555 LED lights
Circuits and Projects
Admin
1 year ago
4 Relevance
Hi!Welcome to the world of Electronics 🙂Here are the answers to all of your questions:1. It's not possible to generate circuits using AI(at least as of now).2. Most of such circuits available Online are copied from somewhere and then designed again. You will find a lot of circuits similar to each other Online. 3. Can you trust these circuits? In most of the cases they are correct but it's better to simulate them first.4. In you particular case, the LED chaser circuit that you shared is correct. I checked from beginning to end. Seems okay. Although, if you have a stable 5 V power supply, you don't need the regulating circuit(L7805 one). Did you simulate the exact same circuit on TinkerCad? Can you share the design file here so that I can take a look.
View entire post
Answer to: Good circuit simulation softwares- Any suggestions?
Softwares
Admin
2 years ago
4 Relevance
Here are some of the best circuit simulation software(online and free): Tinkercad Falstad Simulator.io Circuit.io Circuit-Cloud PartSim Docircuits EasyEDA CircuitLab CircuitSim Everycircuit You can try these on your browser without downloading anything. I personally like TinkerCad for Arduino and Falstad for analog/digital circuit simulation. If you are looking for circuit simulation software to download(paid and free), here is the list: NI MultiSim Autodesk Eagle LTspice PSIM EasyEDA KiCAD CEDAR Logic Simulator Tina TI idealCircuit Proteus Proteus by Labcenter is the best of the best. You can do anything using it. I once simulated an 8-bit computer using register ICs etc.
View entire post
Answer to: How to read resistor color codes?
Theoretical questions
Paul
1 year ago
2 Relevance
A good rule of thumb when reading resistor color codes is to start from the end where the color band is closest to the lead. That first band usually marks the most significant digit, so if one side has a band that's clearly closer to the edge than the other, that’s your starting point. For instance, in many 4-band resistors, you’ll see something like red on one end and gold on the other. The gold band is usually spaced a bit farther from the edge, and since gold and silver are never used as the first digit, that’s a solid hint they mark the tolerance and should be read last. Resistors can have up to 6 color bands, with the extra ones representing things like tolerance and temperature coefficient. These can be a bit trickier to read, but once you're familiar with the basic rules, it gets easier. Here’s a quick breakdown: 4-Band Resistor 1st Band = 1st digit 2nd Band = 2nd digit 3rd Band = Multiplier (i.e., how many zeros to add) 4th Band = Tolerance (accuracy) Example: Red (2), Violet (7), Orange (×1,000), Gold (±5%) → 27,000 ohms or 27kΩ ±5% If you still find it tricky, you can use an Online calculator to make things easier: 👉Resistor Color Code Calculator
View entire post
Answer to: Multimeter continuity beeps with no contact — false positives?
Equipments
Anju
1 year ago
2 Relevance
If your multimeter is acting strangely—like giving false continuity readings—my advice is to first check the manual. If you don’t have a physical copy, most manufacturers provide manuals Online. Make sure the test probes are inserted into the correct sockets for the type of measurement you're doing, and also verify that the batteries are in good condition and properly installed. If everything appears fine and the problem still exists, there’s a good chance the multimeter itself is faulty—especially if it’s a low-cost model. I wouldn’t recommend trying to repair it yourself, as defects might affect other functions and make it potentially unsafe to use. In such cases, it's better to replace it with a quality multimeter that’s safety-rated. This ensures greater reliability and safety, especially for household electrical work.
View entire post
Answer to: Beginner Arduino Course —Any Recommendations?
Arduino
Amelia
1 year ago
2 Relevance
If you're just starting out with Arduino and electronics, you're definitely not alone—there are some fantastic beginner-friendly resources out there to help you get going without feeling overwhelmed. Helpful YouTube Channels Paul McWhorterOne of the best for beginners. His “Arduino Tutorial Series” is clear, structured, and goes from basics to intermediate projects. Jeremy BlumHis Arduino series is a classic and covers foundational knowledge with well-explained videos. GreatScott!Excellent for understanding how the hardware works behind your projects. Programming Electronics AcademyVery helpful if you're also interested in understanding the coding side deeply. Online Courses Worth Checking Out Udemy – "Arduino Step by Step: More than 50 Hours Complete Course" Taught by Dr. Peter Dalmaris. Very beginner-friendly and includes lifetime access to lessons and materials. Coursera – “Introduction to Programming with Arduino” Offered by University of California, Irvine. Teaches both basic electronics and coding in a structured format.
View entire post
Answer to: What are interrupts in Arduino, and how are they used?
Arduino
Admin
1 year ago
2 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: Arduino vs Teensy: Why will anyone choose Uno or Nano?
Arduino
Admin
1 year ago
2 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
Page 2 / 3 Prev Next

Forum Search

Recent Posts

  • RE: Beginner Arduino Course —Any Recommendations?

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

    By playwithcircuit , 3 weeks ago

  • 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

Share:
Forum Information
Recent Posts
Unread Posts
Tags
  • 9 Forums
  • 279 Topics
  • 746 Posts
  • 2 Online
  • 289 Members
Our newest member: jass777
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.4

© 2026 eT Community • Built with GeneratePress