CircuitPython ESP-NOW: Remote control on-board RGB LED via wireless, between ESP32-S3.
With previous CircuitPython exercises of CircuitPython/ESP-NOW and Touch buttons on ILI9341 SPI LCD with FT6336 Cap. Touch , this exercise implement remote control on-board RGB LED wirelessly, between ESP32-S3-DevKitC-1 (sender) and Waveshare ESP32-S3-Zero (receiver). cpyS3_ili9341_FT6336_grouped_color_TouchButtons_espnow_sender.py """ ESP32-S3/CircuitPython 9.0.5 exercise, act as ESP-NOW sender, send msg to receiver to control onboard RGB, with ILI9341 SPI LCD + FT6336 cap. touch. --------------------------- Display Module: 3.2 inch IPS SPI Module ILI9341 with cap. touch FT6336U Test on: dev. board: Espressif ESP32-S3-DevKitC-1 CircuitPython: 9.0.5 Libraries needed: - adafruit_ili9341.mpy - adafruit_focaltouch.mpy - adafruit_display_text folder - adafruit_button folder - adafruit_cursorcontrol folder - adafruit_display_shapes folder (It's needed by adafruit_button, so you have to load in /lib folder.) """ import os, sys import b...