A1 is our Cloud Native UID Scanner (Smart UID Reader). Free for developers to build using their own hardware and our open-source Arduino code.
No subscription. No API key required. Connect your hardware, tap a card, and manage everything on our portal. Ready for production? S1 Smart Access Control Doorlock System available.
in under 5 minutes
Wire ESP32 + MFRC522 (3.3V, SPI), install the Arduino library, flash our firmware. Serial monitor confirms connection at 115200 baud.
Create a free account at uid.auralock.in. Go to Devices → Register → note your Device UID. Use the USB Setup Tool (Chrome/Edge) to write WiFi + credentials directly to the ESP32 flash.
Power up the ESP32. It connects to WiFi, registers a heartbeat, and starts scanning. Tap any Mifare card — the UID appears in your Live Scans dashboard instantly.
Dashboard · Live Scans · Devices · Card Manager · USB Setup Tool — all free.
The AURALOCK A1 firmware is built on the ESP32 Arduino framework with MFRC522 SPI driver. Configuration is stored in NVS — no hardcoding required when using the USB Setup Tool.
// ── AURALOCK A1 Configuration ───────────────────── // Method A: Use USB Setup Tool (recommended) // Method B: Edit below before uploading #define DEVICE_MODEL "AURALOCK A1" #define FIRMWARE_VER "v1.2.2" #define SS_PIN 5 // SDA #define RST_PIN 22 #define LED_PIN 2 String deviceUid = "AURA-A1-R-001"; String deviceToken = "AURA-SEC-XXXXXXXX"; String wifiSSID = "YourWiFi"; String wifiPass = "YourPassword"; // API endpoints (do not change) const char* SERVER_URL = "https://uid.auralock.in/api/scan.php"; const char* HEARTBEAT_URL = "https://uid.auralock.in/api/heartbeat.php";
The A1 developer platform is fully free. When you need production smart locks, S1 enterprise is one message away.
Talk to our team. We'll help you spec the right S1 configuration, pricing, and delivery timeline.
Check the full hardware guide, troubleshooting section, and API reference in our docs. Or reach out directly.
Share feedback, report bugs, or ask questions. Your voice builds AURALOCK.