Comment on page
Arduino IDE
After installing the drivers for the serial bridge and the ESP32 Core, connect OBJEX Link to your PC, open the Arduino IDE and click on tools to enter the parameters shown in the screenshot below.
📌 Select ESP32 Dev Module if you use OBJEX Link v1.0 and higher.
📌 Select ESP32C3 if you use OBJEX Link v1.6-C3 RISCV


So, select the board "ESP32 Dev Module or ESP32C3" (OBJEX Link is compatible with all boards in the ESP32 Core). And select the port(in this example COM22) to connect to OBJEX Link.

Now try to upload sketch/firmware, like this below!
void setup(){
Serial.begin(115200);
}
void loop(){
Serial.println("Hi, OBJEX Link!");
delay(1000);
}
After uploading the test firmware, open the console and if everything is working properly you should see the following message "Hi, OBJEX Link!
Last modified 2yr ago