Search found 1 match
- Tue Apr 16, 2024 8:03 pm
- Forum: General Discussion
- Topic: Using SPI with AI thinker ESP-32-cam
- Replies: 2
- Views: 6462
Re: Using SPI with AI thinker ESP-32-cam
It's works for me: #include <SPI.h> #include <MFRC522.h> #define MISO_PIN 12 #define MOSI_PIN 13 #define SCK_PIN 14 #define SS_PIN 15 #define RST_PIN 16 MFRC522 mfrc522(SS_PIN, RST_PIN); // Create MFRC522 instance void setup() { delay(2000); Serial.begin(115200); // Initialize serial communications ...