A minimal table to compare the Espressif's MCU families.
| ESP8266 | ESP32 | ESP32-S2 | ESP32-S3 | ESP32-C3 | ESP32-C6 | |
|---|---|---|---|---|---|---|
| Announcement Date | 2014, August | 2016, September | 2019, September | 2020, December |
| # Based on ReachView code from Egor Fedorov ([email protected]) | |
| # Updated for Python 3.6.8 on a Raspberry Pi | |
| import time | |
| import pexpect | |
| import subprocess | |
| import sys | |
| import logging |
| # ReachView code is placed under the GPL license. | |
| # Written by Egor Fedorov ([email protected]) | |
| # Copyright (c) 2015, Emlid Limited | |
| # All rights reserved. | |
| # If you are interested in using ReachView code as a part of a | |
| # closed source project, please contact Emlid Limited ([email protected]). | |
| # This file is part of ReachView. |
| import java.io.FileDescriptor; | |
| import java.io.FileOutputStream; | |
| import java.io.IOException; | |
| import java.io.OutputStream; | |
| import java.io.PrintStream; | |
| public class HelloWorld{ | |
| private static HelloWorld instance; | |
| public static void main(String[] args){ | |
| instantiateHelloWorldMainClassAndRun(); |