#include "Arduino.h" enum TYPE { MUXO, MUXI }; class MUX { public: int pin_S0; int pin_S1; int pin_S2; int pin_S3; int pin_EN; int pin_SIG; TYPE type; MUX(int S0, int S1, int S2, int S3, int EN, int SIG, TYPE _type); ~MUX(); void choix_channel(int ch); void...
I started a project for the ESP32-S3 using PlatformIO for Arduino (as they do not support IDF yet). I am using the ESP32-S3-DevKitC-1 v1.0. In that project I am using pin 41 tied to my scope to check performance on some functions which worked just fine. pinMode (40, ...