From 212eaca10d1069ed5ec39f65a5c4db3b2ad0fa65 Mon Sep 17 00:00:00 2001 From: Christophe Robillard Date: Sat, 1 Nov 2025 17:44:03 +0100 Subject: [PATCH] use SS_PIN constant --- the-cup.ino | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/the-cup.ino b/the-cup.ino index 7eaace2..6614c68 100644 --- a/the-cup.ino +++ b/the-cup.ino @@ -26,8 +26,9 @@ #include #define LED_PIN 16 +#define SS_PIN 4 -MFRC522DriverPinSimple ss_1_pin(4); // Configurable, take an unused pin, only HIGH/LOW required, must be different to SS 2. +MFRC522DriverPinSimple ss_1_pin(SS_PIN); // Configurable, take an unused pin, only HIGH/LOW required, must be different to SS 2. MFRC522DriverSPI driver_1{ss_1_pin};