Elegoo EL-CB-005 User Instruction

Nano board

Advertisement

ELEGOO Nano Board User Instruction V1.0
V1.0.23.05.06
1

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the EL-CB-005 and is the answer not in the manual?

Questions and answers

Summary of Contents for Elegoo EL-CB-005

  • Page 1 ELEGOO Nano Board User Instruction V1.0 V1.0.23.05.06...
  • Page 2 Preface Our Company Established in 2011, Elegoo Inc. is a thriving technology company dedicated to research & development, production, and marketing of open-source hardware. Located in Shenzhen, the Silicon Valley of China, we have grown to over 150+ employees with a 10,763+ square ft.factory.
  • Page 3: Customer Service

    As a continuously and quickly growing technology company, we strive to offer you excellent products and quality service. You can reach out to us by email at service@elegoo.com EUservice@elegoo.com. We look forward to hearing from you and any comments or suggestions are of great value to us.
  • Page 5 Content Lesson 0 Installing IDE....................6 Lesson 1 Add Libraries and Installing the CH340 driver..........13 Lesson 2 Open Serial Monitor..................20 Lesson 3 Upload Code To The Nano Board..............23...
  • Page 6: Lesson 0 Installing Ide

    Lesson 0 Installing IDE Introduction The Arduino Integrated Development Environment (IDE) is the software sideof the Arduino platform. In this lesson, you will learn how to setup your computer to use Arduino and how to set about the lessons that follow. The Arduino software that you will use to program your Arduino is available for Windows, Mac and Linux.
  • Page 7 STEP2:Download the development software that is compatible with the operating system of your computer. Take Windows as an example here. Click Windows Installer. Click JUSTD OWNLOAD.
  • Page 8 At the same time, you also could download the Arduino IDE from our official website-https://www.elegoo.com/pages/arduino-kits-support-files Installing Arduino(Windows) Install Arduino with the exe Installation package. Click I Agree to see the following interface...
  • Page 9 Click Next You can press Browse… to choose an installation path or directly type in the directory youwant.
  • Page 10 Click Install to initiate installation Finally, the following interface appears, click Install to finish the installation. Next, the following icon appears on the desktop...
  • Page 11 Double-click to enter the desired development environment You may directly choose the installation package for installation and skip the contents below and jump to the next section. But if you want to learn some methods other than the installation package, please continue to read the section.
  • Page 13: Lesson 1 Add Libraries And Installing The Ch340 Driver

    Lesson 1 Add Libraries and Installing the CH340 driver Install other Arduino libraries Once you are comfortable with the Arduino software and using the built-in functions, you may want to extend the ability of your Arduino with additional libraries. What are Libraries? Libraries are a collection of code that makes it easy for you to connect to a sensor, display, module, etc.
  • Page 14 Then the library manager will open and you will find a list of libraries that are already installed or ready for installation. In this example we will install the Bridge library. Scroll the list to find it, then select the version of the library you want to install. Sometimes only one version of the library is available.
  • Page 15 Finally click on install and wait for the IDE to install the new library. Downloading may take time depending on your connection speed. Once it has finished, an Installed tag should appear next to the Bridge library. You can close the library manager. You can now find the new library available in the Include Library menu.
  • Page 16 You will be prompted to select the Librariesyou would like to add. Navigate to the .zip file's location and open it.
  • Page 17 Install CH340 driver software You can download the CH340 driver software from this link: https://download.elegoo.com/?t=Nano3.0 After you open the tutorial file, you can find CH341SER_LINUX,CH341SER_MAC, and CH341SER_WINDOWS.exe file.
  • Page 18 Please connect the Nano board to your computer and open the device manager. You will see the window below...
  • Page 19 Please double click the CH341SER_WINDOWS.exe file. And click install. After you install the CH340 driver, please check the Nano board on the device manager again. If it shows as “USB-SERIAL CH340(COM)”, it means you install the driver successfully. Note: the com number in different computer is different.
  • Page 20: Making A Connection

    Lesson 2 Open Arduino Serial Monitor The Arduino Integrated Development Environment (IDE) is the software side of the Arduino platform. And, because using a terminal is such a big part of working with Arduinos and other microcontrollers, they decided to include a serial terminal with the software. Within the Arduino environment, this is called the Serial Monitor.
  • Page 21 Once open, you should see something like this:...
  • Page 22 Settings The Serial Monitor has limited settings, but enough to handle most of your serial communication needs. The first setting you can alter is the baud rate. Click on the baud rate drop-down menu to select the correct baud rate. (9600 baud) Last, you can set the terminal to Auto scroll or not by checking the box in the bottom left corner.
  • Page 23: Lesson 3 Upload Code To The Nano Board

    Arduino’s built-in LED, and how to download programs by basic steps. Component Required: (1) x Elegoo Nano Principle The Nano R3 board has rows of connectors along both sides that are used to connect to several electronic devices and plug-in 'shields' that extends its capability.
  • Page 24 You may find that your Nano R3 board's 'L' LED already blinks when you connect it to a USB plug. This is because the boards are generally shipped with the 'Blink' sketch pre-installed. In this lesson, we will reprogram the Nano R3 board with our own Blink sketch and then change the rate at which itblinks.
  • Page 25 When the sketch window opens, enlarge it so that you can see the entire sketch in the window.
  • Page 26 Attach your Arduino board to your computer with the USB cable and check that the 'Board Type' and 'Serial Port' are set correctly.
  • Page 27: Wiring Diagram

    Wiring diagram Code void setup() // initialize digital pin LED_BUILTIN as an output. pinMode(LED_BUILTIN, OUTPUT); // the loop function runs over and over again forever void loop() digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level) delay(1000); // wait for a second digitalWrite(LED_BUILTIN, LOW);...

Table of Contents