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 |
Connect your Telraam device with wired ethernet instead of Wifi, using a USB2Ethernet Dongle like https://www.amazon.de/gp/product/B00MYT481C/
Download Telraam dev image https://github.com/Telraam/Telraam-RPi/blob/master/telraam-dev-image
Flash the image on the SD card
Before putting the SD card into the Raspberry Pi, add the empty file "ssh" in the root of the SD card ("touch ssh")
#!/bin/bash | |
# This script is intended to control the fan speeds on an ASRock X470 Taichi | |
# motherboard, while also using a GPU's temperatures as input. | |
# | |
# ------------------------------ | |
# ASRock X470 Taichi Motherboard | |
# ------------------------------ | |
# | |
# This board's sensors are at /sys/devices/platform/nct6775.656/ |
#include "FastLED.h" | |
// How many leds in your strip? | |
#define NUM_LEDS 60 | |
// For led chips like Neopixels, which have a data line, ground, and power, you just | |
// need to define DATA_PIN. | |
#define DATA_PIN 5 |