Skip to content

Commercial board

Arduino Uno Rev3

Uno


ESP32 DevKitC V4

ESP32 Devkit C

Write program to ESP32(Arduino IDE)

  • Make circuit ESP32_devkitC

  • Instal board manager

    • Add https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json to Arduino IDE(preferences > Additional Board Manager URL on Arduino IDE)
    • Ref. espressif/arduino-esp32
  • Select board for ESP32
    • Tool > Board
      • Board: ESP32 Wrover Module
      • Serial Port: /dev/cu.SLAB_USBtoUART ESP32_Board
  • Write program Blink_ESP32.ino
     1
     2
     3
     4
     5
     6
     7
     8
     9
    10
    11
    const int LED = 13;
    void setup() {
        pinMode(LED, OUTPUT);
    }
    
    void loop() {
        digitalWrite(LED, HIGH);
        delay(1000);
        digitalWrite(LED, LOW);
        delay(1000);
    }
    
  • Upload

    • Click “Upload” (arrow mark at the left top) on Arduino IDE ESP32_upload


BBC Microbit

Microbit1 Microbit2


Raspberry Pi zero W

Rpi Zero W

The Raspberry Pi is a low cost, credit-card sized computer that plugs into a computer monitor or TV, and uses a standard keyboard and mouse.


Last update: March 21, 2021