Notifications
Clear all
Search result for: WA 0812 2782 5310 Order Cat Rumah Minimalis Budget 200 Juta Jenar Sragen
| # | Post Title | Result Info | Date | User | Forum |
| Shift Register Cascading Issues | 5 Relevance | 12 months ago | Electronix | Theoretical questions | |
| I'm trying to cascade multiple 74HC595 shift registers to expand the number of digital outputs in my project. While one shift register works perfectly on its own, as soon as I add the second (and especially the third), I start getting strange or inconsistent output—some LEDs don’t light up correctly, or they shift out of Order. Is there a timing issue I might be overlooking? Do I need to delay between latching and shifting? Could signal integrity or voltage drop be the issue when chaining several ICs? | |||||
| Answer to: Effect of PWM frequency on motors and LEDs | 4 Relevance | 10 months ago | nathan | Theoretical questions | |
| PWM frequency doesn’t change the basic control of speed or brightness (that’s handled by duty cycle), but it does affect how smooth and practical the control feels. For DC motors, too low a frequency can cause audible whining and jerky torque, while using a frequency in the 2–20 kHz range keeps operation smoother and moves the noise above the human hearing range. Going too high can reduce efficiency due to increased switching losses. For LEDs, low frequencies below ~100 Hz cause visible flicker, which is unpleasant and can be noticeable on cameras as well. Frequencies in the 200–500 Hz range reduce flicker significantly, but for professional lighting or display applications, 1 kHz and above is generally preferred to ensure flicker-free performance. | |||||
| Why is LM317 still used over modern switching regulators? | 4 Relevance | 12 months ago | Suraj | Theoretical questions | |
| I’ve noticed that the LM317 linear voltage regulator is still widely used in various hobbyist and even some professional circuits, despite the availability of efficient and compact switching regulators. Considering that switching regulators offer better efficiency, less heat dissipation, and smaller footprints, what are the reasons engineers or designers still opt for LM317 in certain designs? Is it due to simplicity, cost, noise sensitivity, or something else? | |||||
| Answer to: Looking for Reliable Sites to Buy Display Modules | 4 Relevance | 10 months ago | Dinesh bhardwaj | Arduino | |
| For college projects, you can get reliable display modules from Adafruit, SparkFun, and Digi-Key. For Budget-friendly options, Amazon and AliExpress offer plenty, but always check seller ratings. These sites cover LCD, OLED, and LED displays commonly used in student-level projects. If you’re in India, Robu.in is also a solid local option with good availability. | |||||
| ESP32 Vs ESP8266 - Which one to choose? | 4 Relevance | 1 year ago | Nitin arora | ESP32 | |
| I am a college student working on a project that requires a Wi-Fi-enabled microcontroller, but I am unsure whether to choose the ESP8266 or ESP32. I WAnt to understand how they compare in terms of processing power, memory, and additional functionalities. Also, since the Budget is a factor, would the ESP8266 still be a good option, or is it worth spending more on the ESP32? Which one would be more suitable for a college project? | |||||
| Answer to: Good circuit simulation softwares- Any suggestions? | 4 Relevance | 2 years ago | nathan | Softwares | |
| If you're looking for free simulation software, I’d recommend LTspice; however, it lacks built-in Arduino support. For a professional option, OrCAD and Proteus are great choices. There are also many other options available at a moderate Budget that you could try. | |||||
| Answer to: Program to toggle LED state with a single button? | 4 Relevance | 1 year ago | Admin | Programming | |
| ... tries to debounce but isn't ideal because it blocks the loop and prevents the Arduino from doing anything else during that time. Direct Button Read Without Edge Detection – Since you're checking digitalRead(buttonPin) == HIGH, if you hold the button down even slightly too long, it keeps toggling instead of switching just once per press. Try the program given below. Better program to toggle LED state with a single button: const int buttonPin = 2; const int ledPin = 13; bool ledState = false; bool lastButtonState = LOW; unsigned long lastDebounceTime = ... | |||||
| Program to toggle LED state with a single button? | 4 Relevance | 1 year ago | tricky_logic | Programming | |
| ... 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 ... | |||||
| Answer to: What is the maximum operating frequency? | 4 Relevance | 1 year ago | Admin | Theoretical questions | |
| Hi, You can check its datasheet for this. The maximum operating frequency depends on its internal components and architecture: M9K Embedded Memory Blocks:Maximum operating frequency: 315 MHz for Cyclone III devices. Global Clock Networks:Maximum frequency: 315 MHz. Internal Logic:Achievable frequencies depend on the design, but a typical maximum is 200 MHz, influenced by factors like logic depth and routing. | |||||
| Suggestions for a Handheld or Compact Oscilloscope? | 4 Relevance | 11 months ago | PCBChronicles | Equipments | |
| I’ve mostly used benchtop oscilloscopes available in my college lab, but now I’m looking to buy a portable oscilloscope that I can easily carry around for on-site testing and general electronics work. Portability is important to me, but I don’t WAnt to compromise too much on performance or usability. Can anyone recommend a good portable oscilloscope—either handheld or tablet-style—that offers a decent balance of features, screen quality, and reliability? I’d prefer something with at least 2 channels, good battery life, and support for basic measurements lik ... | |||||