This Electronics Component Basic Starter Kit is a versatile set designed for beginners and hobbyists. The unbranded/generic components come in a white plastic case for easy storage and organisation. This kit includes a variety of components to help users learn and experiment with electronics. The lightweight package weighs only 290g and measures 180 * 85 * 45mm, making it convenient to transport and store. Ideal for those looking to delve into the world of electrical equipment and supplies, this starter kit offers a solid foundation for personal projects or professional use.
✅ How to Program a Generic Arduino Nano Clone in the Arduino IDE01Install the Arduino IDEYou need the official IDE to upload sketches to a Nano clone.Download from arduino.cc/en/softwareInstall normally (Windows will ask for driver permission — allow it)02Install the CH340 USB DriverMost Chinese Nano clones use the CH340 USB‑serial chip, which Windows often lacks drivers for.Search for CH340 driver from manufacturer wch.cnInstall the Windows versionRe‑plug the Nano after installation03Connect the Nano via USBThe board should appear as a COM port once the driver is installed.Use an appropriate USB cable Avoid power‑only cables — they won’t workAfter plugging in, check Device Manager → Ports (COM & LPT) for a new COM port04Select the Correct Board in Arduino IDENano clones require the correct board profile to upload successfully.Arduino IDE → Tools → Board → Arduino AVR Boards → Arduino NanoDo NOT select Nano Every or Nano 33 — wrong architecture05Select the Correct Processor (Old Bootloader)Critical StepMost Chinese Nano clones use the older bootloader and will fail unless this is set.Tools → Processor → ATmega328P (Old Bootloader)If uploads fail, 90% of the time this setting is the reason06Select the Correct COM PortThe IDE must know which USB port your Nano is on.Tools → Port → Select the COM port that appeared earlierIf no COM port appears, the CH340 driver is not installed correctly07Upload the Blink Test ProgramThis confirms the board, bootloader, and USB interface all work.Open File → Examples → 01.Basics → BlinkClick Upload (right‑arrow button)The onboard LED on pin 13 should blink once per second once upload completes