How to Install uKit Explore Arduino Library

Step 1: Download Arduino IDE

Below is the example for the Windows users. You can download the Arduino IE from the official Arduino website: Arduino IDE .

Recommended to use at least Arduino 1.8.0 or above.

Click on the Windows Installers to download it, and then follow the instructions to install the Arduino IDE on your laptop.

Step 2: Download uKit Explore Arduino Library

Browse to https://github.com/UBTEDU/uKitExplore-library, and click on the Clone or download button to Download ZIP.

Step 3: Add the uKit Explore Library into Arduino IDE

Open the Arduino IDE, go to Sketch > Include Library > Add .ZIP library

and browse to the location of the downloaded ZIP file in Step 2 to add the library.

Step 4:Verify the installation of uKit Explore Library

Open the Arduino IDE, copy and paste the below code.

Make sure you selected the board as Arduino Mega or Mega 2560, and correct COM port.

If it able to compile and upload, the installation of the uKit Explore library is successful!

#include "uKitExplore2.h"
void setup() {
    Initialization();
}
void loop() {
}

Last updated