Purchase the Renesas RZ/G3E Evaluation Board Kit
- Introduction
- Requirements
- Hardware Setup
- Software Setup
- Device Setup
- Onboard Device
- Using the Demo
- Resources
This guide provides step-by-step instructions to set up the Renesas RZ/G3E Evaluation Board Kit hardware and integrate it with /IOTCONNECT, Avnet's robust IoT platform. The Renesas RZ/G3E Evaluation Board Kit hardware platform provides flexible options for IoT application development, enabling secure device onboarding, telemetry collection, and over-the-air (OTA) updates.
This guide has been written and tested to work on a Windows 10/11 PC. However, there is no reason this can't be replicated in other environments.
- Renesas RZ/G3E Evaluation Board Kit Purchase | User Manual | All Resources
- Micro-USB Cable (included)
- Ethernet Cable (not included)
- 5V 3A+ Power Supply with USB-C Cable (not included, available here)
- SanDisk 8GB (or more) UHS-1 Class 10 Micro-SD card (not included, available here)
Important
The bootloader setup process specifically requires TeraTerm. Other serial communication software like PuTTy will not be sufficient for this device.
- An SD-Card flashing utility such as Balena Etcher
See the reference image below for hardware configuration and connections.
Using the above image as reference, make the following connections:
- Using a small flathead screwdriver, gently turn the dial labeled #1 counter-clockwise until the groove of the dial is facing the "1" (selects 5V).
Important
Turning this dial does require force. If you face any significant resistance, do not continue attempting to turn it.
- Connect the USB-C power supply to the USB-C connector on the board labeled #2.
Tip
After connecting power to the board, two green LEDs should illuminate on the board above the connector. If a red LED illuminates, that means that the voltage selector dial (labeled #1 in the diagram) is not set to 5V.
- Connect the micro-USB cable from your host PC to the micro-USB connector labeled #3.
- Connect an Ethernet cable from your LAN (router/switch) to the Ethernet connector labeled #4.
- (After the software setup is complete) Insert the micro-SD card into the slot labeled #5.
Renesas provides thorough instructions here for flashing a pre-built image to an SD card, flashing the bootloader files to the board, and then booting up the board with the image for the first time.
Complete all the steps from that guide (except for "2.2 Build the Linux Environment) and then resume here at step 5.
- With the board powered on (3 green LEDs should be illuminated), connect serially again in TeraTerm.
- Ensure that your serial settings in your session are set to:
- Baud Rate: 115200
- Data Bits: 8
- Stop Bits: 1
- Parity: None
Note
A successful connection may result in just a blank terminal box. If you see a blank terminal box, press the ENTER key to get a login prompt. An unsuccessful connection attempt will usually result in an error window popping up.
-
When prompted for a login, type
rootfollowed by the ENTER key. -
The image for the RZ/G3E does not include the necessary repositories to download the Python Lite SDK and its dependencies so instead you will download the required packages to your host PC, transfer them to the board, and then install them. First execute the command
ip aand note theinetIP address of your board under theend0network interface. -
In a Git Bash or WSL terminal on your host PC (or just standard terminal if using Linux), run this command (replacing
<IP-ADDRESS>at the very end with the IP address from sub-step 4) to download and execute a script that will gather the needed packages and transfer them to your RZ/G3E:
wget https://raw.githubusercontent.com/avnet-iotconnect/iotc-python-lite-sdk-demos/refs/heads/main/renesas-rzg3e-evk/scripts/deps-download.sh && bash ./deps-download.sh <IP-ADDRESS>
- Now back in a terminal on the RZ/G3E run this command to download and execute a script that will install the transferred packages:
wget https://raw.githubusercontent.com/avnet-iotconnect/iotc-python-lite-sdk-demos/refs/heads/main/renesas-rzg3e-evk/scripts/deps-install.sh && bash ./deps-install.sh
- Then run this command to create and move into a directory for your demo files:
mkdir -p /opt/demo && cd /opt/demo
Tip
To gain access to "copy" and "paste" functions inside of a PuTTY terminal window, you can CTRL+RIGHTCLICK within the window to utilize a dropdown menu with these commands. This is very helpful for copying/pasting between your browser and the terminal.
The next step is to onboard your device into /IOTCONNECT. This will be done via the online /IOTCONNECT user interface.
Follow this guide to walk you through the process.
Run the basic demo with this command:
python3 app.py
Note
Always make sure you are in the /opt/demo directory before running the demo. You can move to this
directory with the command: cd /opt/demo
View the random-integer telemetry data under the "Live Data" tab for your device on /IOTCONNECT.

