KS0001A Keyestudio REV3 (Black) Main Control Board

1. Introduction
keyestudio REV3 is a microcontroller board based on the ATmega328 (datasheet), fully compatible with ARDUINO UNO REV3.
It has 14 digital input/output pins (of which 6 can be used as PWM outputs), 6 analog inputs, a 16 MHz quartz crystal, a USB connection, a power jack, 2 ICSP headers and a reset button. It contains everything needed to support the microcontroller; simply connect it to a computer with a USB cable or power it with a AC-to-DC adapter or battery to get started.
Note that the two ICSP headers are separately used to program the firmware to ATMEGA16U2-MU and ATMEGA328P-PU, but generally the two chips have been programmed well.
The REV3 differs from all preceding boards in that it does not use the FTDI USB-to-serial driver chip. Instead, it features the Atmega16U2 programmed as a USB-to-serial converter.
The REV3 is the best board to get started with electronics and coding. If this is your first experience tinkering with the platform, the REV3 is the most robust board you can start playing with.
2. Tech Specs
Microcontroller |
ATmega328P-PU |
|---|---|
Operating Voltage |
5V |
Input Voltage (recommended) |
7-12V |
Digital I/O Pins |
14 (of which 6 provide PWM output) |
PWM Digital I/O Pins |
6 (D3, D5, D6, D9, D10, D11) |
Analog Input Pins |
6 (A0-A5) |
DC Current per I/O Pin |
20 mA |
DC Current for 3.3V Pin |
50 mA |
Flash Memory |
32 KB (ATmega328) of which 0.5 KB used by bootloader |
SRAM |
2 KB (ATmega328P-PU) |
EEPROM |
1 KB (ATmega328P-PU) |
Clock Speed |
16 MHz |
LED_BUILTIN |
D13 |
3. Features
1.0 pinout: added SDA and SCL pins that are near to the AREF pin and two other new pins placed near to the RESET pin, the IOREF that allow the shields to adapt to the voltage provided from the board.
Stronger RESET circuit.
Atmega 16U2 replace the 8U2.
4. PCB Dimensions

5. Element and Pin Interfaces
Here is an explanation chart of what every element and interface of the board does:

No. |
Explain |
|---|---|
|
ICSP (In-Circuit Serial Programming) Header |
|
Power LED Indicator |
|
Digital I/O |
|
GND ( Ground pin headers) |
|
AREF |
|
SDA |
|
SCL |
|
ICSP (In-Circuit Serial Programming) Header |
|
RESET Button |
|
D13 LED |
|
USB Connection |
|
ATMEGA 16U2-MU |
|
TX LED |
|
RX LED |
|
Crystal Oscillator |
|
Voltage Regulator |
|
DC Power Jack |
|
IOREF |
|
RESET Header |
|
Power Pin 3V3 |
|
Power Pin 5V |
|
Vin |
|
Analog Pins |
|
Microcontroller |
6. Specialized Functions of Some Pins
Serial communication: Digital pins 0 (RX) and 1 (TX).
PWM Interfaces (Pulse-Width Modulation): D3, D5, D6, D9, D10, D11
External Interrupts: D2 (interrupt 0) and D3 (interrupt 1). These pins can be configured to trigger an interrupt on a low value, a rising or falling edge, or a change in value.
SPI communication: D10 (SS), D11 (MOSI), D12 (MISO), D13 (SCK). These pins support SPI communication using the SPI library.
IIC communication: A4 (SDA); A5(SCL)
7. Notice
1. The Arduino REV3 has a resettable polyfuse that protects your computer’s USB ports from shorts and overcurrent. If more than 500 mA is applied to the USB port, the fuse will automatically break the connection until the short or overload is removed.
2. Automatic (Software) Reset:
Rather than requiring a physical press of the reset button before an upload, the Arduino REV3 board is designed in a way that allows it to be reset by software running on a connected computer.
3. The REV3 board contains a trace that can be cut to disable the auto-reset. The pads on either side of the trace can be soldered together to re-enable it. It’s labeled “RESET-EN”. You may also be able to disable the auto-reset by connecting a 110 ohm resistor from 5V to the reset line; see this forum thread for details.
8. Software Download
Open the browser and search: https://www.arduino.cc/en/software, we will take WINDOWS system as an example to show you how to download and install.

You just need to click JUSTDOWNLOAD,then click the downloaded file to install it. And when the ZIP file is downloaded,you can directly unzip and start it.

9. Installing Driver
Download driver : drivers
Next, we will introduce the driver installation of REV3 development board. The driver installation may have slight differences in different computer systems. So in the following let’s move on to the driver installation in the WIN 7 system.
The Arduino folder contains both the Arduino program itself and the drivers that allow the Arduino to be connected to your computer by a USB cable. Before we launch the Arduino software, you are going to install the USB drivers.

Plug one end of your USB cable into the Arduino and the other into a USB socket on your computer. When you connect REV3 board to your computer at the first time, right click the icon of your “Computer” —>for “Properties”—> click the “Device manager”, under “Other Devices”, you should see an icon for “Unknown device” with a little yellow warning triangle next to it. This is your Arduino.

Then right-click on the device and select the top menu option (Update Driver Software…) shown as the figure below.

It will then be prompted to either “Search Automatically for updated driver software” or “Browse my computer for driver software”. Shown as below. In this page, select “Browse my computer for driver software”.

After that, select the option to browse and navigate to the “drivers” folder of Arduino installation.

Click “Next” and you may get a security warning, if so, allow the software to be installed. Shown as below.

Installation completed, click “Close”.

Up to now, the driver is installed well. Then you can right click “Computer” —>“Properties”—>“Device manager”, you should see the device shown below.

10. Set Arduino IDE
Connect the Keyestudio REV3 (Black)Main Control Board to your computer using the USB cable. The green power LED should go on.

Connecting the board to the computer,and select the development board and port.

Note: to avoid errors, the COM Port should keep the same as the Ports shown on Device Manager.

11. Upload the Program
Below is an example program for displaying the Hello World!
Copy and paste the code to the Arduino environment IDE.
int val;
int ledpin=13;
void setup()
{
Serial.begin(9600);
pinMode(ledpin,OUTPUT);
}
void loop()
{
val=Serial.read();
if(val=='R')
{
digitalWrite(ledpin,HIGH);
delay(500);
digitalWrite(ledpin,LOW);
delay(500);
Serial.println("Hello World!");
}
}
Picture |
Introduction |
|---|---|
|
Check the code for errors |
|
Upload the current Sketch to the Arduino |
|
Display the serial data being sent from the Arduino |
After that, click the serial monitor button to open the serial monitor.
Then set the baud rate as 9600, enter an “R” and click Send, you should see the RX led on the board blink once, and then D13 led blink once, finally “Hello World!” is showed on the monitor, the TX led blink once. Congrats!

12. Package List
keyestudio REV3 BOARD * 1pcs
USB cable * 1pcs



























