Posts

Showing posts from September, 2021

VSCODE Arduino Can't select programmer

Image
I've made a video tutorial on how to use Arduino + VSCODE for a better coding environment. One of YouTube visitor asked why he can't select Arduino Programmer. 13:53 in the video I did a bit experiment and found out that for ESP8266 & EPS32, you can't select Arduino Programmer. I'm not sure if this is a bug or Arduino extension intended. I then plugged a Arduino Nano, then the programmer shown correctly. Here is how to solve the problem, if you are use ESP8266 or ESP32: On the left hand side, click "arduino.json" to edit the file. Add this line: "programmer":"arduino:avrisp",  Example: {     "sketch": "ESP32-Robot-car\\ESP32-Robot-car.ino",     "configuration": "CPUFreq=240,FlashMode=qio,FlashFreq=80",     "board": "esp32:esp32:esp32cam",     "port": "COM3",     "programmer": "arduino:avrisp",     "output": "../build"