diff --git a/resources/views/reports.blade.php b/resources/views/reports.blade.php
index 28a2707..47e7006 100644
--- a/resources/views/reports.blade.php
+++ b/resources/views/reports.blade.php
@@ -128,10 +128,10 @@
System Wemos: Perubahan status sistem Wemos
-
@@ -975,6 +975,78 @@ function setupListeners() {
console.error('Error getting motion status:', error);
});
+ // TAMBAHAN: Listener untuk status sensor DHT11
+ database.ref('sensors/dht11').on('value', (snapshot) => {
+ const status = snapshot.val();
+ console.log('DHT11 status received:', status);
+
+ const isConnected = status === 'connected';
+ const statusText = isConnected ? 'Connected' : 'Disconnected';
+ const statusClass = `text-sm sm:text-lg font-semibold ${isConnected ? 'text-green-500' : 'text-red-500'}`;
+
+ // Update status DHT11 di semua elemen yang sesuai
+ document.querySelectorAll('.dht-status').forEach(el => {
+ el.textContent = statusText;
+ el.className = `dht-status ${statusClass}`;
+ });
+ }, (error) => {
+ console.error('Error getting DHT11 status:', error);
+ });
+
+ // TAMBAHAN: Listener untuk status sensor MPU6050
+ database.ref('sensors/mpu6050').on('value', (snapshot) => {
+ const status = snapshot.val();
+ console.log('MPU6050 status received:', status);
+
+ const isConnected = status === 'connected';
+ const statusText = isConnected ? 'Connected' : 'Disconnected';
+ const statusClass = `text-sm sm:text-lg font-semibold ${isConnected ? 'text-green-500' : 'text-red-500'}`;
+
+ // Update status MPU6050 di semua elemen yang sesuai
+ document.querySelectorAll('.mpu-status').forEach(el => {
+ el.textContent = statusText;
+ el.className = `mpu-status ${statusClass}`;
+ });
+ }, (error) => {
+ console.error('Error getting MPU6050 status:', error);
+ });
+
+ // TAMBAHAN: Listener untuk status Servo
+ database.ref('sensors/servo').on('value', (snapshot) => {
+ const status = snapshot.val();
+ console.log('Servo status received:', status);
+
+ const isConnected = status === 'Connected';
+ const statusText = isConnected ? 'Connected' : 'Disconnected';
+ const statusClass = `text-sm sm:text-lg font-semibold ${isConnected ? 'text-green-500' : 'text-red-500'}`;
+
+ // Update status Servo di semua elemen yang sesuai
+ document.querySelectorAll('.servo-status').forEach(el => {
+ el.textContent = statusText;
+ el.className = `servo-status ${statusClass}`;
+ });
+ }, (error) => {
+ console.error('Error getting Servo status:', error);
+ });
+
+ // TAMBAHAN: Listener untuk status RFID
+ database.ref('sensors/rfid').on('value', (snapshot) => {
+ const status = snapshot.val();
+ console.log('RFID status received:', status);
+
+ const isConnected = status === 'Connected';
+ const statusText = isConnected ? 'Connected' : 'Disconnected';
+ const statusClass = `text-sm sm:text-lg font-semibold ${isConnected ? 'text-green-500' : 'text-red-500'}`;
+
+ // Update status RFID di semua elemen yang sesuai
+ document.querySelectorAll('.rfid-status').forEach(el => {
+ el.textContent = statusText;
+ el.className = `rfid-status ${statusClass}`;
+ });
+ }, (error) => {
+ console.error('Error getting RFID status:', error);
+ });
+
console.log('All listeners setup complete with new approach');
}
@@ -1207,6 +1279,63 @@ function forceRefreshDeviceStatus() {
el.className = statusClass;
});
});
+
+ // PERBAIKAN: Update status sensor dengan path yang benar
+ database.ref('logs/dht/status').once('value', (snapshot) => {
+ const status = snapshot.val();
+ console.log('Forcing refresh of DHT11 status:', status);
+
+ const isConnected = status === 'connected';
+ const statusText = isConnected ? 'Connected' : 'Disconnected';
+ const statusClass = `text-sm sm:text-lg font-semibold ${isConnected ? 'text-green-500' : 'text-red-500'}`;
+
+ document.querySelectorAll('.dht-status').forEach(el => {
+ el.textContent = statusText;
+ el.className = `dht-status ${statusClass}`;
+ });
+ });
+
+ database.ref('logs/mpu/status').once('value', (snapshot) => {
+ const status = snapshot.val();
+ console.log('Forcing refresh of MPU6050 status:', status);
+
+ const isConnected = status === 'connected';
+ const statusText = isConnected ? 'Connected' : 'Disconnected';
+ const statusClass = `text-sm sm:text-lg font-semibold ${isConnected ? 'text-green-500' : 'text-red-500'}`;
+
+ document.querySelectorAll('.mpu-status').forEach(el => {
+ el.textContent = statusText;
+ el.className = `mpu-status ${statusClass}`;
+ });
+ });
+
+ database.ref('logs/servo/status').once('value', (snapshot) => {
+ const status = snapshot.val();
+ console.log('Forcing refresh of Servo status:', status);
+
+ const isConnected = status === 'Connected';
+ const statusText = isConnected ? 'Connected' : 'Disconnected';
+ const statusClass = `text-sm sm:text-lg font-semibold ${isConnected ? 'text-green-500' : 'text-red-500'}`;
+
+ document.querySelectorAll('.servo-status').forEach(el => {
+ el.textContent = statusText;
+ el.className = `servo-status ${statusClass}`;
+ });
+ });
+
+ database.ref('logs/RFID/status').once('value', (snapshot) => {
+ const status = snapshot.val();
+ console.log('Forcing refresh of RFID status:', status);
+
+ const isConnected = status === 'Connected';
+ const statusText = isConnected ? 'Connected' : 'Disconnected';
+ const statusClass = `text-sm sm:text-lg font-semibold ${isConnected ? 'text-green-500' : 'text-red-500'}`;
+
+ document.querySelectorAll('.rfid-status').forEach(el => {
+ el.textContent = statusText;
+ el.className = `rfid-status ${statusClass}`;
+ });
+ });
}
// Fungsi untuk memeriksa status online/offline perangkat
diff --git a/storage/app/reports.json b/storage/app/reports.json
index 9d50946..6ca2ab7 100644
--- a/storage/app/reports.json
+++ b/storage/app/reports.json
@@ -18493,5 +18493,11137 @@
"lastActive": 1742634566,
"lastActiveWemos": 1742634559
}
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "connected"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 58,
+ "temperature": 32.2
+ },
+ "device": {
+ "lastActive": 1742726621,
+ "lastActiveWemos": 1742726578
+ },
+ "id": "25911bb1-da8c-4812-9452-1864eaf9677f",
+ "timestamp": "2025-03-23T10:43:56+00:00",
+ "change_type": "smartcab"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "connected"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 59,
+ "temperature": 32.1
+ },
+ "device": {
+ "lastActive": 1742726621,
+ "lastActiveWemos": 1742726638
+ },
+ "id": "e7cd0a50-d5c6-42ac-ba5b-e4501c0e73da",
+ "timestamp": "2025-03-23T10:44:06+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "connected"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 60,
+ "temperature": 32
+ },
+ "device": {
+ "lastActive": 1742726621,
+ "lastActiveWemos": 1742726638
+ },
+ "id": "f74fb8c2-6753-4f37-810d-bf43e1d8a2b3",
+ "timestamp": "2025-03-23T10:44:16+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "connected"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 61,
+ "temperature": 31.4
+ },
+ "device": {
+ "lastActive": 1742726682,
+ "lastActiveWemos": 1742726699
+ },
+ "id": "ea33d1ef-badd-4e46-930d-911517759087",
+ "timestamp": "2025-03-23T10:45:02+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "connected"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 62,
+ "temperature": 31.4
+ },
+ "device": {
+ "lastActive": 1742726682,
+ "lastActiveWemos": 1742726699
+ },
+ "id": "29e0ae96-08e5-4795-a88e-cd2383dec362",
+ "timestamp": "2025-03-23T10:45:12+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 62,
+ "temperature": 31.2
+ },
+ "device": {
+ "lastActive": 1742726682,
+ "lastActiveWemos": 1742726699
+ },
+ "id": "19485302-84c4-45f8-b1c2-435aeed26bea",
+ "timestamp": "2025-03-23T10:45:29+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 62,
+ "temperature": 31.2
+ },
+ "device": {
+ "lastActive": 1742726682,
+ "lastActiveWemos": 1742726699
+ },
+ "id": "bd4631aa-6e9e-4aef-9f44-00472ce6ad28",
+ "timestamp": "2025-03-23T10:45:33+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 62,
+ "temperature": 31.2
+ },
+ "device": {
+ "lastActive": 1742726682,
+ "lastActiveWemos": 1742726699
+ },
+ "id": "f51822e7-1f9e-40e4-83a4-b2e7030409f5",
+ "timestamp": "2025-03-23T10:45:39+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "connected"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 63,
+ "temperature": 31
+ },
+ "device": {
+ "lastActive": 1742726742,
+ "lastActiveWemos": 1742726760
+ },
+ "id": "0588c401-89a2-4cc0-b5ef-ab369a215f14",
+ "timestamp": "2025-03-23T10:45:58+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 63,
+ "temperature": 30.9
+ },
+ "device": {
+ "lastActive": 1742726742,
+ "lastActiveWemos": 1742726760
+ },
+ "id": "859643a6-fe1f-45bc-807c-2d3a0d747707",
+ "timestamp": "2025-03-23T10:46:15+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "connected"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 63,
+ "temperature": 30.9
+ },
+ "device": {
+ "lastActive": 1742726742,
+ "lastActiveWemos": 1742726760
+ },
+ "id": "772bc151-42fb-4b03-ad36-31a7f2b5cc15",
+ "timestamp": "2025-03-23T10:46:18+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 64,
+ "temperature": 30.6
+ },
+ "device": {
+ "lastActive": 1742726804,
+ "lastActiveWemos": 1742726821
+ },
+ "id": "4aebcba9-40ac-47ba-9d80-51ae378cfbf4",
+ "timestamp": "2025-03-23T10:47:14+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 64,
+ "temperature": 30.6
+ },
+ "device": {
+ "lastActive": 1742726804,
+ "lastActiveWemos": 1742726821
+ },
+ "id": "ca379c76-8071-42b7-a26e-1176019b3d7f",
+ "timestamp": "2025-03-23T10:47:14+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 64,
+ "temperature": 30.6
+ },
+ "device": {
+ "lastActive": 1742726804,
+ "lastActiveWemos": 1742726821
+ },
+ "id": "23cb8f89-11de-44cf-89a7-588dc949d194",
+ "timestamp": "2025-03-23T10:47:21+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 64,
+ "temperature": 30.6
+ },
+ "device": {
+ "lastActive": 1742726865,
+ "lastActiveWemos": 1742726821
+ },
+ "id": "cbe99a0b-3e44-4380-924c-7cd49a4c264b",
+ "timestamp": "2025-03-23T10:48:00+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "connected"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 65,
+ "temperature": 30.5
+ },
+ "device": {
+ "lastActive": 1742726865,
+ "lastActiveWemos": 1742726882
+ },
+ "id": "7ea04a0b-240b-49be-b6ea-89fc957b2fb5",
+ "timestamp": "2025-03-23T10:48:07+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "connected"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 65,
+ "temperature": 30.5
+ },
+ "device": {
+ "lastActive": 1742726865,
+ "lastActiveWemos": 1742726882
+ },
+ "id": "cb87de27-f612-4a2b-99d8-412a0265acaa",
+ "timestamp": "2025-03-23T10:48:07+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "connected"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 65,
+ "temperature": 30.4
+ },
+ "device": {
+ "lastActive": 1742726865,
+ "lastActiveWemos": 1742726882
+ },
+ "id": "aef1f9de-c88d-4c74-9027-ab70b8c4dcb1",
+ "timestamp": "2025-03-23T10:48:15+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "connected"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 66,
+ "temperature": 30.4
+ },
+ "device": {
+ "lastActive": 1742726865,
+ "lastActiveWemos": 1742726882
+ },
+ "id": "8d90717d-9075-432c-864b-20f2dac7c90d",
+ "timestamp": "2025-03-23T10:48:22+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 66,
+ "temperature": 30.4
+ },
+ "device": {
+ "lastActive": 1742726865,
+ "lastActiveWemos": 1742726882
+ },
+ "id": "8c41978b-918f-4008-92a4-0453b523cf00",
+ "timestamp": "2025-03-23T10:48:43+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "connected"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 161,
+ "temperature": 15.1
+ },
+ "device": {
+ "lastActive": 1742726926,
+ "lastActiveWemos": 1742726882
+ },
+ "id": "653fbc11-84d2-4ddd-b4ca-8074a437f267",
+ "timestamp": "2025-03-23T10:48:52+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "connected"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 161,
+ "temperature": 15.1
+ },
+ "device": {
+ "lastActive": 1742726926,
+ "lastActiveWemos": 1742726882
+ },
+ "id": "70d89926-2e95-4163-a8dd-02a66889b30e",
+ "timestamp": "2025-03-23T10:48:52+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "connected"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 66,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742726926,
+ "lastActiveWemos": 1742726943
+ },
+ "id": "48bf3c56-4d16-402c-92f4-f45caef8e7ba",
+ "timestamp": "2025-03-23T10:49:01+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 66,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742726926,
+ "lastActiveWemos": 1742726943
+ },
+ "id": "697fc474-0ae7-479d-90f7-276c584c4a97",
+ "timestamp": "2025-03-23T10:49:04+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "connected"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 66,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742726926,
+ "lastActiveWemos": 1742726943
+ },
+ "id": "375f2d78-a393-47f3-945d-802235779046",
+ "timestamp": "2025-03-23T10:49:11+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742727049,
+ "lastActiveWemos": 1742727004
+ },
+ "id": "4294adf4-7c30-40b5-9541-dfae7667e61b",
+ "timestamp": "2025-03-23T10:50:50+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "connected"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742727049,
+ "lastActiveWemos": 1742727004
+ },
+ "id": "e0a6de77-68a6-45b6-8c57-0525e866f874",
+ "timestamp": "2025-03-23T10:50:53+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "connected"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742727049,
+ "lastActiveWemos": 1742727004
+ },
+ "id": "0e08f8e3-b614-40aa-a2a1-3e554dc86eea",
+ "timestamp": "2025-03-23T10:50:57+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "connected"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 68,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742727049,
+ "lastActiveWemos": 1742727064
+ },
+ "id": "1cb52efc-0dac-4734-9190-aa7375cc0c02",
+ "timestamp": "2025-03-23T10:51:04+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 69,
+ "temperature": 30.4
+ },
+ "device": {
+ "lastActive": 1742727110,
+ "lastActiveWemos": 1742727064
+ },
+ "id": "41a6f0a0-5dca-4969-a7ec-e581d93fc3a6",
+ "timestamp": "2025-03-23T10:51:50+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 70,
+ "temperature": 30.5
+ },
+ "device": {
+ "lastActive": 1742727110,
+ "lastActiveWemos": 1742727064
+ },
+ "id": "025ee459-573b-4f26-a085-3bff478a892a",
+ "timestamp": "2025-03-23T10:51:54+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "connected"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 70,
+ "temperature": 30.5
+ },
+ "device": {
+ "lastActive": 1742727110,
+ "lastActiveWemos": 1742727125
+ },
+ "id": "47b1b582-22fb-4a9f-8f1f-0febf153a66f",
+ "timestamp": "2025-03-23T10:52:04+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "connected"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 70,
+ "temperature": 30.5
+ },
+ "device": {
+ "lastActive": 1742727110,
+ "lastActiveWemos": 1742727125
+ },
+ "id": "3c0088c2-73a0-47f1-8a1f-3bc590d49516",
+ "timestamp": "2025-03-23T10:52:04+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 69,
+ "temperature": 30.5
+ },
+ "device": {
+ "lastActive": 1742727110,
+ "lastActiveWemos": 1742727125
+ },
+ "id": "8bda3164-8fdd-4200-a2f2-0fa6a9b86633",
+ "timestamp": "2025-03-23T10:52:06+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "connected"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 69,
+ "temperature": 30.5
+ },
+ "device": {
+ "lastActive": 1742727110,
+ "lastActiveWemos": 1742727125
+ },
+ "id": "4447ed16-9d49-45b7-83f3-eef20be286e6",
+ "timestamp": "2025-03-23T10:52:12+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742727171,
+ "lastActiveWemos": 1742727186
+ },
+ "id": "0e282257-c96d-4285-9e2c-91190c564e15",
+ "timestamp": "2025-03-23T10:53:46+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742727171,
+ "lastActiveWemos": 1742727186
+ },
+ "id": "d4816370-7920-413b-9d93-f705c26576a9",
+ "timestamp": "2025-03-23T10:53:46+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742727231,
+ "lastActiveWemos": 1742727186
+ },
+ "id": "8a349310-56d8-449f-bfe6-064db66264d2",
+ "timestamp": "2025-03-23T10:53:53+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device offline",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742728506,
+ "lastActiveWemos": 1742728581
+ },
+ "id": "41232ea4-1808-44dd-87b7-75b7f4d798ab",
+ "timestamp": "2025-03-23T11:16:52+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742728506,
+ "lastActiveWemos": 1742728581
+ },
+ "id": "243c8f82-7d07-4563-9528-87ddcc5b1232",
+ "timestamp": "2025-03-23T11:17:03+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device offline",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742728506,
+ "lastActiveWemos": 1742728642
+ },
+ "id": "09153a5e-e7e9-49cc-8b0b-745e24103993",
+ "timestamp": "2025-03-23T11:17:53+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742728678,
+ "lastActiveWemos": 1742728642
+ },
+ "id": "dca6f018-e611-46c5-9101-a3c1f7bff2fc",
+ "timestamp": "2025-03-23T11:17:58+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742729526,
+ "lastActiveWemos": 1742729495
+ },
+ "id": "406e2e1e-96be-4e98-bf4c-4e85e0723ea1",
+ "timestamp": "2025-03-23T11:32:15+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742729526,
+ "lastActiveWemos": 1742729495
+ },
+ "id": "817cb572-d2f4-4ed0-919d-ede5e75216c7",
+ "timestamp": "2025-03-23T11:32:24+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device offline",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742735585,
+ "lastActiveWemos": 1742735631
+ },
+ "id": "afdc6190-18f5-4fd8-95e7-93339a859664",
+ "timestamp": "2025-03-23T13:14:27+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742735691,
+ "lastActiveWemos": 1742735691
+ },
+ "id": "8375b30e-3131-462c-bae7-0a7926c15c3a",
+ "timestamp": "2025-03-23T13:14:50+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device offline",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742735753,
+ "lastActiveWemos": 1742735814
+ },
+ "id": "fe709756-92cd-4dbd-83b9-ba26354542d2",
+ "timestamp": "2025-03-23T13:17:32+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742735862,
+ "lastActiveWemos": 1742735814
+ },
+ "id": "867228df-5107-4fec-9735-fdad16bb6173",
+ "timestamp": "2025-03-23T13:17:45+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742735982,
+ "lastActiveWemos": 1742735997
+ },
+ "id": "3c2a42b2-b55d-4994-bec9-5507e9c09bed",
+ "timestamp": "2025-03-23T13:20:12+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742735982,
+ "lastActiveWemos": 1742735997
+ },
+ "id": "abfa3b0d-d3df-4fe2-8520-374af15c20b8",
+ "timestamp": "2025-03-23T13:20:21+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742736106,
+ "lastActiveWemos": 1742736118
+ },
+ "id": "1fc4ae71-642d-499f-a0c5-91cdd2c836a8",
+ "timestamp": "2025-03-23T13:22:00+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742736106,
+ "lastActiveWemos": 1742736118
+ },
+ "id": "467527b2-2087-4aec-9d3a-5af35c0c7e22",
+ "timestamp": "2025-03-23T13:22:10+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742736348,
+ "lastActiveWemos": 1742736300
+ },
+ "id": "e2fce043-64e1-40e5-922b-31c67b97684f",
+ "timestamp": "2025-03-23T13:25:49+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742736348,
+ "lastActiveWemos": 1742736300
+ },
+ "id": "c25ca047-b4f8-41de-bb8e-254a3381397f",
+ "timestamp": "2025-03-23T13:25:55+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742736410,
+ "lastActiveWemos": 1742736421
+ },
+ "id": "d42f363d-4cef-4d11-a27d-0c8ba3a46d52",
+ "timestamp": "2025-03-23T13:27:34+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742736410,
+ "lastActiveWemos": 1742736421
+ },
+ "id": "f204d8b4-c655-49e2-a0b3-b4a73a8e936e",
+ "timestamp": "2025-03-23T13:27:48+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742736777,
+ "lastActiveWemos": 1742736735
+ },
+ "id": "3c43d3b0-9bcc-4153-a500-8bef0b7ce5b2",
+ "timestamp": "2025-03-23T13:33:14+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742736777,
+ "lastActiveWemos": 1742736796
+ },
+ "id": "7f7ae3dc-7066-4b3f-96bb-84e9d2fb42b2",
+ "timestamp": "2025-03-23T13:33:21+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": true
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device auto-restarting..."
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742736777,
+ "lastActiveWemos": 1742736796
+ },
+ "id": "7342cda6-3bda-4936-be8e-60634391ee70",
+ "timestamp": "2025-03-23T13:33:35+00:00",
+ "change_type": "control"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": true
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device auto-restarting..."
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742736777,
+ "lastActiveWemos": 1742736796
+ },
+ "id": "0d7e04db-ac6c-4f23-a2ac-fe0bac92889b",
+ "timestamp": "2025-03-23T13:33:35+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device auto-restarting..."
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742736777,
+ "lastActiveWemos": 1742736796
+ },
+ "id": "affe6e3f-4f53-4bb7-954e-d7ddac5bfd40",
+ "timestamp": "2025-03-23T13:33:41+00:00",
+ "change_type": "control"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742736777,
+ "lastActiveWemos": 1742736828
+ },
+ "id": "a50abce0-3e61-4c75-a08b-0b695ceb6a3e",
+ "timestamp": "2025-03-23T13:33:53+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terbuka",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742736838,
+ "lastActiveWemos": 1742736828
+ },
+ "id": "7342218f-68a5-4faa-b305-7e27a4c31835",
+ "timestamp": "2025-03-23T13:34:07+00:00",
+ "change_type": "smartcab"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742736838,
+ "lastActiveWemos": 1742736828
+ },
+ "id": "91cd2071-4b39-447c-89ad-890d62200302",
+ "timestamp": "2025-03-23T13:34:13+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742736838,
+ "lastActiveWemos": 1742736828
+ },
+ "id": "214b5828-5a0b-4ee5-b82f-4c6cb8d191d3",
+ "timestamp": "2025-03-23T13:34:13+00:00",
+ "change_type": "smartcab"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terbuka",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742736838,
+ "lastActiveWemos": 1742736828
+ },
+ "id": "18cba05e-ff53-421a-bf7c-7e53c98f8cf4",
+ "timestamp": "2025-03-23T13:34:23+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terbuka",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742736838,
+ "lastActiveWemos": 1742736828
+ },
+ "id": "c95a1147-f2aa-4a4b-8d51-bdaafcbb20b9",
+ "timestamp": "2025-03-23T13:34:23+00:00",
+ "change_type": "smartcab"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742736838,
+ "lastActiveWemos": 1742736828
+ },
+ "id": "74e918ab-6504-461d-955a-26f8db5aed60",
+ "timestamp": "2025-03-23T13:34:31+00:00",
+ "change_type": "smartcab"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terbuka",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742736838,
+ "lastActiveWemos": 1742736880
+ },
+ "id": "b87e9fd2-59c4-4099-8fb5-62e85e60d5ec",
+ "timestamp": "2025-03-23T13:34:49+00:00",
+ "change_type": "smartcab"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742736899,
+ "lastActiveWemos": 1742736880
+ },
+ "id": "f89c5ea0-ffe0-4d59-a15d-da1630ad61d3",
+ "timestamp": "2025-03-23T13:35:01+00:00",
+ "change_type": "smartcab"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terbuka",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742736899,
+ "lastActiveWemos": 1742736880
+ },
+ "id": "dc8e245d-743e-4856-8c80-526dd5344800",
+ "timestamp": "2025-03-23T13:35:26+00:00",
+ "change_type": "smartcab"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terbuka",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Offline"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742736972,
+ "lastActiveWemos": 1742736943
+ },
+ "id": "19763c98-1960-4354-b12e-e00246a9ee5b",
+ "timestamp": "2025-03-23T13:36:56+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terbuka",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742736972,
+ "lastActiveWemos": 1742737019
+ },
+ "id": "7c0f0f65-89a9-4326-aed8-f2ed0f1a6460",
+ "timestamp": "2025-03-23T13:37:06+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terbuka",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Offline"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742737368,
+ "lastActiveWemos": 1742737305
+ },
+ "id": "16bdc2d1-21f9-450b-8910-c70dcd7fb956",
+ "timestamp": "2025-03-23T13:43:15+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terbuka",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742737281,
+ "lastActiveWemos": 1742737305
+ },
+ "id": "6fb31d42-b7ce-48b1-b0f2-c48e733cc44d",
+ "timestamp": "2025-03-23T13:43:20+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terbuka",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742738292,
+ "lastActiveWemos": 1742738308
+ },
+ "id": "1122b88e-2fb4-47b3-b7e5-f22a2c807f3a",
+ "timestamp": "2025-03-23T13:58:50+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terbuka",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742738292,
+ "lastActiveWemos": 1742738308
+ },
+ "id": "df5bf9df-8e4a-4895-bd17-926e39d5e84c",
+ "timestamp": "2025-03-23T13:59:01+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 67,
+ "temperature": 30.3
+ },
+ "device": {
+ "lastActive": 1742738656,
+ "lastActiveWemos": 1742738674
+ },
+ "id": "781c5eb9-44aa-41ae-85f4-ced2f17a0ff2",
+ "timestamp": "2025-03-23T14:04:54+00:00",
+ "change_type": "smartcab"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "connected"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 179.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742741256,
+ "lastActiveWemos": 1742741231
+ },
+ "id": "f9acb458-16c7-4491-9df4-9f95d95c3fc0",
+ "timestamp": "2025-03-23T14:48:07+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 80,
+ "temperature": 28.2
+ },
+ "device": {
+ "lastActive": 1742741625,
+ "lastActiveWemos": 1742741596
+ },
+ "id": "fd501e8d-240a-41fc-822e-680884318dcc",
+ "timestamp": "2025-03-23T14:53:44+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "connected"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 80,
+ "temperature": 28.2
+ },
+ "device": {
+ "lastActive": 1742741625,
+ "lastActiveWemos": 1742741596
+ },
+ "id": "a3fc0e2b-12cd-422c-b94a-a137be85e79f",
+ "timestamp": "2025-03-23T14:53:50+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 80,
+ "temperature": 28.2
+ },
+ "device": {
+ "lastActive": 1742741688,
+ "lastActiveWemos": 1742741717
+ },
+ "id": "5f705ff9-4a03-4b1f-9dfb-dc70d28efdaa",
+ "timestamp": "2025-03-23T14:55:39+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "connected"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 80,
+ "temperature": 28.2
+ },
+ "device": {
+ "lastActive": 1742741688,
+ "lastActiveWemos": 1742741717
+ },
+ "id": "396b7dac-0ef8-4228-aeda-2b49399ddd3d",
+ "timestamp": "2025-03-23T14:55:45+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 168,
+ "temperature": 14
+ },
+ "device": {
+ "lastActive": 1742742119,
+ "lastActiveWemos": 1742742144
+ },
+ "id": "b34d5573-8738-40d8-9d33-75860be50a34",
+ "timestamp": "2025-03-23T15:02:47+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "connected"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 168,
+ "temperature": 14
+ },
+ "device": {
+ "lastActive": 1742742119,
+ "lastActiveWemos": 1742742144
+ },
+ "id": "f7fdda1d-c300-4308-9bbf-aac824bf3446",
+ "timestamp": "2025-03-23T15:02:53+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 168,
+ "temperature": 14
+ },
+ "device": {
+ "lastActive": 1742742244,
+ "lastActiveWemos": 1742742265
+ },
+ "id": "4b5640b4-a6e2-4440-a63d-350ba2c76e64",
+ "timestamp": "2025-03-23T15:04:47+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "connected"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 168,
+ "temperature": 14
+ },
+ "device": {
+ "lastActive": 1742742305,
+ "lastActiveWemos": 1742742265
+ },
+ "id": "28fa844a-48fd-49b3-bd8c-9c2f7e4a82c8",
+ "timestamp": "2025-03-23T15:05:05+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 168,
+ "temperature": 14
+ },
+ "device": {
+ "lastActive": 1742742427,
+ "lastActiveWemos": 1742742386
+ },
+ "id": "eab2ea06-5165-43b2-8d55-c2f4e66da071",
+ "timestamp": "2025-03-23T15:07:11+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "connected"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742742427,
+ "lastActiveWemos": 1742742446
+ },
+ "id": "3cfd3bdc-b426-40d6-9db4-c73b7b34ab10",
+ "timestamp": "2025-03-23T15:07:29+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742742427,
+ "lastActiveWemos": 1742742446
+ },
+ "id": "d202d23b-435f-45b6-935b-1aedf4bb7b78",
+ "timestamp": "2025-03-23T15:07:47+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742742427,
+ "lastActiveWemos": 1742742446
+ },
+ "id": "4698be19-3551-4722-ab21-3cf8377434bb",
+ "timestamp": "2025-03-23T15:08:00+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742742487,
+ "lastActiveWemos": 1742742446
+ },
+ "id": "ae3a743a-d050-4bc1-abe9-aebd6522b8b1",
+ "timestamp": "2025-03-23T15:08:06+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742743210,
+ "lastActiveWemos": 1742743174
+ },
+ "id": "7c3a15ab-d401-4526-92db-6c7db0e9ee71",
+ "timestamp": "2025-03-23T15:20:26+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742743210,
+ "lastActiveWemos": 1742743235
+ },
+ "id": "f50b6d45-66a3-41e9-81be-8aeb139c7320",
+ "timestamp": "2025-03-23T15:20:36+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742743393,
+ "lastActiveWemos": 1742743417
+ },
+ "id": "16972b5c-79ae-4797-bb49-473b03b814dc",
+ "timestamp": "2025-03-23T15:24:12+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742743454,
+ "lastActiveWemos": 1742743417
+ },
+ "id": "2ccc724a-48c3-4c44-8ecd-0874ec273d50",
+ "timestamp": "2025-03-23T15:24:24+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742743454,
+ "lastActiveWemos": 1742743478
+ },
+ "id": "917e96f2-0515-4acf-91e0-5f949c7899b6",
+ "timestamp": "2025-03-23T15:25:06+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742743454,
+ "lastActiveWemos": 1742743478
+ },
+ "id": "9d2020e6-6171-4c16-8dae-d93488691ed1",
+ "timestamp": "2025-03-23T15:25:12+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742744238,
+ "lastActiveWemos": 1742744267
+ },
+ "id": "f51d4774-43dd-4662-91de-206fa4f0dd60",
+ "timestamp": "2025-03-23T15:38:11+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742744298,
+ "lastActiveWemos": 1742744267
+ },
+ "id": "476f5fc5-cd2a-4f23-916d-dc89e57bf7c6",
+ "timestamp": "2025-03-23T15:38:23+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742745932,
+ "lastActiveWemos": 1742745967
+ },
+ "id": "6b472332-afdf-49ef-9997-b2291a2313be",
+ "timestamp": "2025-03-23T16:06:31+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742745993,
+ "lastActiveWemos": 1742745967
+ },
+ "id": "66911ba7-b37a-4f51-b0b6-86c8c2972d9e",
+ "timestamp": "2025-03-23T16:06:40+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742746478,
+ "lastActiveWemos": 1742746455
+ },
+ "id": "09fa64f8-f8fd-4fae-9774-c1c60708e6c3",
+ "timestamp": "2025-03-23T16:14:53+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742746478,
+ "lastActiveWemos": 1742746455
+ },
+ "id": "8d05b7b0-85ef-4509-bcae-b215d2c45c08",
+ "timestamp": "2025-03-23T16:15:05+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742746598,
+ "lastActiveWemos": 1742746637
+ },
+ "id": "76a8bdcc-df55-4460-bc9a-14f411440535",
+ "timestamp": "2025-03-23T16:17:33+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742746659,
+ "lastActiveWemos": 1742746637
+ },
+ "id": "28a25fed-7144-4601-bd47-e07b8e88ff13",
+ "timestamp": "2025-03-23T16:17:41+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742747142,
+ "lastActiveWemos": 1742747184
+ },
+ "id": "fefba018-0a62-455b-be6c-6d56597fa31b",
+ "timestamp": "2025-03-23T16:26:38+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742747203,
+ "lastActiveWemos": 1742747184
+ },
+ "id": "665b96d6-7987-4869-b580-0171a7d86e88",
+ "timestamp": "2025-03-23T16:26:48+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742747203,
+ "lastActiveWemos": 1742747184
+ },
+ "id": "8ba9a1c9-dade-4697-b80e-c21b0e503fcf",
+ "timestamp": "2025-03-23T16:26:54+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742747203,
+ "lastActiveWemos": 1742747184
+ },
+ "id": "f5530fdf-d8d8-4eed-8843-26c0524104c1",
+ "timestamp": "2025-03-23T16:27:06+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742747203,
+ "lastActiveWemos": 1742747184
+ },
+ "id": "12b6080e-4584-433c-a0de-e12ecc709abc",
+ "timestamp": "2025-03-23T16:27:08+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742747203,
+ "lastActiveWemos": 1742747184
+ },
+ "id": "d42d7eb6-0548-4689-8ac4-2cd909b2be02",
+ "timestamp": "2025-03-23T16:27:18+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742747505,
+ "lastActiveWemos": 1742747487
+ },
+ "id": "d457ffef-6e92-425b-b9d3-e7d69026b295",
+ "timestamp": "2025-03-23T16:32:20+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742747505,
+ "lastActiveWemos": 1742747548
+ },
+ "id": "27e38269-a7ef-4475-b650-265d22d6d170",
+ "timestamp": "2025-03-23T16:32:31+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742747566,
+ "lastActiveWemos": 1742747609
+ },
+ "id": "a96cce32-cb5d-45cb-a85a-fb6c6f7a1487",
+ "timestamp": "2025-03-23T16:33:38+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742747626,
+ "lastActiveWemos": 1742747609
+ },
+ "id": "a8f01e43-cd5e-4e1e-95af-40fda86cb7b6",
+ "timestamp": "2025-03-23T16:33:49+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742747746,
+ "lastActiveWemos": 1742747730
+ },
+ "id": "bceced52-a7db-4ba5-a389-b6d527027718",
+ "timestamp": "2025-03-23T16:36:25+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742747746,
+ "lastActiveWemos": 1742747791
+ },
+ "id": "14b5a3aa-35c9-4254-94bf-19dc5961d8a4",
+ "timestamp": "2025-03-23T16:36:37+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742747929,
+ "lastActiveWemos": 1742747912
+ },
+ "id": "9077e751-f26a-47a5-bf9c-d65a43e9e7e1",
+ "timestamp": "2025-03-23T16:38:56+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742747929,
+ "lastActiveWemos": 1742747912
+ },
+ "id": "546b40fe-8e88-45da-bddf-23377163fe80",
+ "timestamp": "2025-03-23T16:39:08+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742747990,
+ "lastActiveWemos": 1742748033
+ },
+ "id": "97328bf2-ea2f-4459-870a-7636d6bfd6cb",
+ "timestamp": "2025-03-23T16:40:33+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742747990,
+ "lastActiveWemos": 1742748033
+ },
+ "id": "ec9da94e-c350-4d33-b1e2-1c21dc188992",
+ "timestamp": "2025-03-23T16:40:44+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742748112,
+ "lastActiveWemos": 1742748154
+ },
+ "id": "36ee0202-ed23-43ce-b60f-94bcf7baf39d",
+ "timestamp": "2025-03-23T16:42:38+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742748112,
+ "lastActiveWemos": 1742748154
+ },
+ "id": "7902f6aa-8071-495b-9b1f-99a6da9002fc",
+ "timestamp": "2025-03-23T16:42:50+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742748534,
+ "lastActiveWemos": 1742748520
+ },
+ "id": "252d5be0-0ee0-422c-b7ed-37ab2344fa08",
+ "timestamp": "2025-03-23T16:49:04+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742748534,
+ "lastActiveWemos": 1742748520
+ },
+ "id": "30ef905e-16c1-4ea4-952e-aea968189a89",
+ "timestamp": "2025-03-23T16:49:10+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742748534,
+ "lastActiveWemos": 1742748580
+ },
+ "id": "d4b47664-b60c-4001-9a69-a95a5b2af404",
+ "timestamp": "2025-03-23T16:49:46+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742748534,
+ "lastActiveWemos": 1742748580
+ },
+ "id": "9d086d16-eef0-4c3e-a61e-ac0014f1308b",
+ "timestamp": "2025-03-23T16:49:52+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742749799,
+ "lastActiveWemos": 1742749795
+ },
+ "id": "43bf6dac-d8fd-4dbc-af0d-ad3ad35b3484",
+ "timestamp": "2025-03-23T17:10:40+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742749799,
+ "lastActiveWemos": 1742749795
+ },
+ "id": "36b30d59-2fb6-450b-8692-677852f9c471",
+ "timestamp": "2025-03-23T17:10:48+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742749921,
+ "lastActiveWemos": 1742749916
+ },
+ "id": "f472091b-e1d3-4b37-9a8f-c062311cb06d",
+ "timestamp": "2025-03-23T17:12:54+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742749982,
+ "lastActiveWemos": 1742749977
+ },
+ "id": "394ba756-99d3-4915-876f-21ff86da426c",
+ "timestamp": "2025-03-23T17:13:05+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device auto-restarting...",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742750163,
+ "lastActiveWemos": 1742750220
+ },
+ "id": "c4006403-3f06-44c4-9e3e-7a8230e88132",
+ "timestamp": "2025-03-23T17:17:00+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742750163,
+ "lastActiveWemos": 1742750220
+ },
+ "id": "399312b9-ccaf-420f-93b1-b024b4963fed",
+ "timestamp": "2025-03-23T17:17:12+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device offline",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742750163,
+ "lastActiveWemos": 1742750220
+ },
+ "id": "4092e9b3-13f5-42bf-a71e-ad492ec6d711",
+ "timestamp": "2025-03-23T17:17:36+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742750279,
+ "lastActiveWemos": 1742750281
+ },
+ "id": "5d14497b-9592-4990-b442-d324039f6b5e",
+ "timestamp": "2025-03-23T17:18:00+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742750339,
+ "lastActiveWemos": 1742750341
+ },
+ "id": "000e14f5-6136-4738-9a40-c5eed12b476b",
+ "timestamp": "2025-03-23T17:19:39+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742750339,
+ "lastActiveWemos": 1742750341
+ },
+ "id": "419951a2-cd17-44ae-b280-4d3c234e4f8b",
+ "timestamp": "2025-03-23T17:19:49+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742750460,
+ "lastActiveWemos": 1742750463
+ },
+ "id": "695b9a87-57b3-4389-8342-a99bdaee9476",
+ "timestamp": "2025-03-23T17:21:13+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742750460,
+ "lastActiveWemos": 1742750463
+ },
+ "id": "e55ce609-8be6-4f8f-8bc4-830f31cacae3",
+ "timestamp": "2025-03-23T17:21:23+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742750460,
+ "lastActiveWemos": 1742750463
+ },
+ "id": "56a66c47-5870-4dd5-be47-843d2a5315b3",
+ "timestamp": "2025-03-23T17:21:29+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742750460,
+ "lastActiveWemos": 1742750463
+ },
+ "id": "b4b4dc29-019f-4d65-b8ef-1ab537538b1c",
+ "timestamp": "2025-03-23T17:21:37+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742750520,
+ "lastActiveWemos": 1742750524
+ },
+ "id": "d5851623-5deb-4def-82be-f8cdf07d6b29",
+ "timestamp": "2025-03-23T17:22:05+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742750520,
+ "lastActiveWemos": 1742750524
+ },
+ "id": "7b85b441-b7fa-4093-8f40-23fb57b2c42c",
+ "timestamp": "2025-03-23T17:22:11+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742750520,
+ "lastActiveWemos": 1742750524
+ },
+ "id": "d0cf64d7-d40c-4217-b40a-2679482982a2",
+ "timestamp": "2025-03-23T17:22:13+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742750520,
+ "lastActiveWemos": 1742750524
+ },
+ "id": "2424fbef-55cd-4389-a5f6-eda0b5541944",
+ "timestamp": "2025-03-23T17:22:23+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742751550,
+ "lastActiveWemos": 1742751555
+ },
+ "id": "0b3327be-0b19-460a-9e80-451dad921184",
+ "timestamp": "2025-03-23T17:39:45+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742751550,
+ "lastActiveWemos": 1742751555
+ },
+ "id": "ea098c1e-3881-4a8c-9d1d-ed4b0671abcd",
+ "timestamp": "2025-03-23T17:39:51+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742751612,
+ "lastActiveWemos": 1742751616
+ },
+ "id": "6f671bab-3421-494d-bc70-b7ea51f14317",
+ "timestamp": "2025-03-23T17:40:27+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742751612,
+ "lastActiveWemos": 1742751616
+ },
+ "id": "0b07a159-50b1-4171-9770-0560e4214634",
+ "timestamp": "2025-03-23T17:40:36+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742751734,
+ "lastActiveWemos": 1742751738
+ },
+ "id": "66a262bd-f70e-48cc-a552-5c4b88a04834",
+ "timestamp": "2025-03-23T17:42:55+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742751734,
+ "lastActiveWemos": 1742751738
+ },
+ "id": "45d4e1a4-5fa5-4d88-b02a-0d01cd63a455",
+ "timestamp": "2025-03-23T17:43:04+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742751734,
+ "lastActiveWemos": 1742751738
+ },
+ "id": "ab5445a6-2af2-4949-a36b-a8dbbfcc195e",
+ "timestamp": "2025-03-23T17:43:13+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742751795,
+ "lastActiveWemos": 1742751798
+ },
+ "id": "06cf663a-ceda-4afd-98b6-289f76c63560",
+ "timestamp": "2025-03-23T17:43:22+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742753550,
+ "lastActiveWemos": 1742753562
+ },
+ "id": "9c760077-f7f9-407a-9bf3-f8fdacf6718d",
+ "timestamp": "2025-03-23T18:13:20+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742753550,
+ "lastActiveWemos": 1742753562
+ },
+ "id": "35c107d3-2118-437e-8911-e95a7dcb3abe",
+ "timestamp": "2025-03-23T18:13:26+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742753853,
+ "lastActiveWemos": 1742753864
+ },
+ "id": "5535368f-c33f-472d-aeb5-e61af1a4cda7",
+ "timestamp": "2025-03-23T18:18:14+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742753853,
+ "lastActiveWemos": 1742753864
+ },
+ "id": "cc3bcb4a-badb-4cee-9e63-040ed3b2478e",
+ "timestamp": "2025-03-23T18:18:24+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742754155,
+ "lastActiveWemos": 1742754107
+ },
+ "id": "1b806338-53ad-4057-b8de-d3138b4f7b70",
+ "timestamp": "2025-03-23T18:22:42+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742754155,
+ "lastActiveWemos": 1742754168
+ },
+ "id": "02b63bb6-7b67-4e55-887c-5aa4304924d0",
+ "timestamp": "2025-03-23T18:22:54+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742754155,
+ "lastActiveWemos": 1742754168
+ },
+ "id": "1cb8dbf5-130b-452c-b001-84664c3b3c9e",
+ "timestamp": "2025-03-23T18:23:00+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742754155,
+ "lastActiveWemos": 1742754168
+ },
+ "id": "ea0b24fc-974d-47eb-91ae-22c6c49b51ef",
+ "timestamp": "2025-03-23T18:23:12+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742754938,
+ "lastActiveWemos": 1742754956
+ },
+ "id": "d40e2358-a03e-44d3-9a0c-fb2a809edefd",
+ "timestamp": "2025-03-23T18:36:37+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742754999,
+ "lastActiveWemos": 1742754956
+ },
+ "id": "254b73e4-339a-4010-9c8d-a409161fd0dc",
+ "timestamp": "2025-03-23T18:36:48+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742754999,
+ "lastActiveWemos": 1742754956
+ },
+ "id": "def7112f-e760-4a65-b98c-713a54e9bdef",
+ "timestamp": "2025-03-23T18:36:54+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742754999,
+ "lastActiveWemos": 1742755017
+ },
+ "id": "2f5667cd-5903-45c5-a1cf-2522d831b221",
+ "timestamp": "2025-03-23T18:37:00+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742755060,
+ "lastActiveWemos": 1742755017
+ },
+ "id": "aea50744-0529-41cb-bcd3-079aed9c3fdf",
+ "timestamp": "2025-03-23T18:37:43+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742755060,
+ "lastActiveWemos": 1742755017
+ },
+ "id": "ee5a0337-d9f5-4ef3-ad95-a7705645e4d3",
+ "timestamp": "2025-03-23T18:37:54+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742756093,
+ "lastActiveWemos": 1742756107
+ },
+ "id": "0c21351f-19c3-4613-a050-d6b03324f4d8",
+ "timestamp": "2025-03-23T18:55:27+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742756093,
+ "lastActiveWemos": 1742756107
+ },
+ "id": "2bf7bbcd-7e12-47a4-a949-3c6c5468b2f3",
+ "timestamp": "2025-03-23T18:55:38+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742756093,
+ "lastActiveWemos": 1742756107
+ },
+ "id": "87193f10-fd79-49f1-97a7-9e0c6e567b1b",
+ "timestamp": "2025-03-23T18:55:50+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742756154,
+ "lastActiveWemos": 1742756107
+ },
+ "id": "3cc02cb4-09e5-477b-811e-180230f8c297",
+ "timestamp": "2025-03-23T18:55:56+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742756154,
+ "lastActiveWemos": 1742756168
+ },
+ "id": "f99a58f7-4d85-4a53-97c0-76e26464e36f",
+ "timestamp": "2025-03-23T18:56:38+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742756154,
+ "lastActiveWemos": 1742756168
+ },
+ "id": "fd687a2b-1c00-407e-8a93-68ec58cf0a1e",
+ "timestamp": "2025-03-23T18:56:50+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742756215,
+ "lastActiveWemos": 1742756168
+ },
+ "id": "97d473c2-8a20-422f-acfb-a3f5ee79c21a",
+ "timestamp": "2025-03-23T18:56:56+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742756215,
+ "lastActiveWemos": 1742756168
+ },
+ "id": "0dac3552-7fd6-4dc9-9017-cb18a2c2f6aa",
+ "timestamp": "2025-03-23T18:57:02+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742756215,
+ "lastActiveWemos": 1742756228
+ },
+ "id": "2067814d-4615-4c01-a605-a46a09797ee0",
+ "timestamp": "2025-03-23T18:57:21+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742756215,
+ "lastActiveWemos": 1742756228
+ },
+ "id": "c4d47d02-1bcd-4ca8-82e0-253d5bd601cf",
+ "timestamp": "2025-03-23T18:57:32+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742756215,
+ "lastActiveWemos": 1742756228
+ },
+ "id": "49263bc9-6d34-4ea7-891e-dc7e51046104",
+ "timestamp": "2025-03-23T18:57:38+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742756215,
+ "lastActiveWemos": 1742756228
+ },
+ "id": "60301c76-7d4d-49e8-b095-15bf79b88090",
+ "timestamp": "2025-03-23T18:57:44+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742756457,
+ "lastActiveWemos": 1742756410
+ },
+ "id": "46772121-dca5-46d6-9758-3dcfe710c38f",
+ "timestamp": "2025-03-23T19:01:03+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742756457,
+ "lastActiveWemos": 1742756471
+ },
+ "id": "acc03c36-c1dd-43e1-a687-9b83eff4caee",
+ "timestamp": "2025-03-23T19:01:12+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742756457,
+ "lastActiveWemos": 1742756471
+ },
+ "id": "2b096b38-8c60-4d2b-9c24-27574eec8039",
+ "timestamp": "2025-03-23T19:01:33+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742756457,
+ "lastActiveWemos": 1742756471
+ },
+ "id": "91606423-4515-4248-bcbc-6b8aece9321b",
+ "timestamp": "2025-03-23T19:01:43+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742756821,
+ "lastActiveWemos": 1742756835
+ },
+ "id": "9efda6d1-0b29-4d02-af0f-07907f65d46c",
+ "timestamp": "2025-03-23T19:07:19+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742756821,
+ "lastActiveWemos": 1742756835
+ },
+ "id": "672c645f-d911-4e64-9cea-1bf8c46222d2",
+ "timestamp": "2025-03-23T19:07:29+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742756882,
+ "lastActiveWemos": 1742756896
+ },
+ "id": "5ec013c2-7dca-4e5b-b671-b18f4c4b9e7e",
+ "timestamp": "2025-03-23T19:08:17+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742756882,
+ "lastActiveWemos": 1742756896
+ },
+ "id": "6b751d54-c1db-494d-a266-4fae371eb4d0",
+ "timestamp": "2025-03-23T19:08:23+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742756943,
+ "lastActiveWemos": 1742756957
+ },
+ "id": "94143a9d-1b19-455a-9b75-0386642b53cd",
+ "timestamp": "2025-03-23T19:09:41+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742756943,
+ "lastActiveWemos": 1742756957
+ },
+ "id": "91efe595-218a-4de4-9985-bd0f5bbf2290",
+ "timestamp": "2025-03-23T19:09:53+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742757005,
+ "lastActiveWemos": 1742757018
+ },
+ "id": "2072e515-aa7a-42c0-97f6-1928545054eb",
+ "timestamp": "2025-03-23T19:10:25+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742757005,
+ "lastActiveWemos": 1742757018
+ },
+ "id": "808c7d9e-5b57-457e-b96e-436f79961113",
+ "timestamp": "2025-03-23T19:10:39+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742757005,
+ "lastActiveWemos": 1742757018
+ },
+ "id": "dd8a29ec-5494-4346-aaf7-bfb6cbb13319",
+ "timestamp": "2025-03-23T19:10:58+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742757065,
+ "lastActiveWemos": 1742757018
+ },
+ "id": "e78a3e17-19bf-4eab-987a-61fb88cecc39",
+ "timestamp": "2025-03-23T19:11:05+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742757430,
+ "lastActiveWemos": 1742757443
+ },
+ "id": "fdbb193b-e083-4975-b18c-474ab416fc34",
+ "timestamp": "2025-03-23T19:17:26+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742757430,
+ "lastActiveWemos": 1742757443
+ },
+ "id": "4c80c7c4-e5db-45d1-8ccb-826c3534a223",
+ "timestamp": "2025-03-23T19:17:34+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742757430,
+ "lastActiveWemos": 1742757443
+ },
+ "id": "0a8bf15b-7850-4090-bb5d-78e25f851544",
+ "timestamp": "2025-03-23T19:18:08+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742757492,
+ "lastActiveWemos": 1742757443
+ },
+ "id": "74f668f3-6f8f-46f4-ae5f-bb917c59021f",
+ "timestamp": "2025-03-23T19:18:15+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742757492,
+ "lastActiveWemos": 1742757504
+ },
+ "id": "af334868-0908-421f-9f1e-b86e28a0cf08",
+ "timestamp": "2025-03-23T19:18:39+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742757492,
+ "lastActiveWemos": 1742757504
+ },
+ "id": "22a36b90-6d66-4b7a-9355-043b39faeb08",
+ "timestamp": "2025-03-23T19:18:59+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742757555,
+ "lastActiveWemos": 1742757565
+ },
+ "id": "78884918-c475-4e6f-931d-6fb3f32ad7ba",
+ "timestamp": "2025-03-23T19:20:11+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742757616,
+ "lastActiveWemos": 1742757565
+ },
+ "id": "4fe0dc14-ee2e-4c52-bcc6-8c391c80a58e",
+ "timestamp": "2025-03-23T19:20:23+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "disabled",
+ "status": "off"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742757616,
+ "lastActiveWemos": 1742757626
+ },
+ "id": "26a5a304-a1f2-4131-90ce-df15df7a5432",
+ "timestamp": "2025-03-23T19:21:15+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "disabled",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742757678,
+ "lastActiveWemos": 1742757687
+ },
+ "id": "14828d48-2b1a-4272-874d-fcd5596a8a6e",
+ "timestamp": "2025-03-23T19:21:42+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742757678,
+ "lastActiveWemos": 1742757687
+ },
+ "id": "f701da87-dea5-4f26-add6-3b4fa779f98b",
+ "timestamp": "2025-03-23T19:22:01+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742757678,
+ "lastActiveWemos": 1742757687
+ },
+ "id": "7ecc078f-299e-4cb7-8b82-3b986e3f568e",
+ "timestamp": "2025-03-23T19:22:12+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742757678,
+ "lastActiveWemos": 1742757687
+ },
+ "id": "3801b379-98a7-4cca-ac94-5f4d4b397b74",
+ "timestamp": "2025-03-23T19:22:13+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742757739,
+ "lastActiveWemos": 1742757687
+ },
+ "id": "03ec67b5-4481-4585-81fd-6bebfe9e8959",
+ "timestamp": "2025-03-23T19:22:24+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terbuka",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742757739,
+ "lastActiveWemos": 1742757748
+ },
+ "id": "e4f7d96e-745e-4eef-af80-b7d5b8717b03",
+ "timestamp": "2025-03-23T19:22:36+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terbuka",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742757739,
+ "lastActiveWemos": 1742757748
+ },
+ "id": "bbc3f11f-18cd-4d91-b030-83681ff382ee",
+ "timestamp": "2025-03-23T19:22:36+00:00",
+ "change_type": "smartcab"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742757739,
+ "lastActiveWemos": 1742757748
+ },
+ "id": "b0e346bb-5741-4b92-ad91-22efc720a768",
+ "timestamp": "2025-03-23T19:22:42+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742757739,
+ "lastActiveWemos": 1742757748
+ },
+ "id": "c578d6f8-3622-42f0-862c-5f2be5b76370",
+ "timestamp": "2025-03-23T19:22:42+00:00",
+ "change_type": "smartcab"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "disabled",
+ "status": "off"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742757799,
+ "lastActiveWemos": 1742757808
+ },
+ "id": "2d3a42f1-1a50-4dcb-883a-6ba61d26b3b7",
+ "timestamp": "2025-03-23T19:23:36+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "disabled",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742757799,
+ "lastActiveWemos": 1742757808
+ },
+ "id": "060a1428-9f2a-45c6-a747-76a2a2a80db2",
+ "timestamp": "2025-03-23T19:24:13+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 180.8,
+ "temperature": 14.1
+ },
+ "device": {
+ "lastActive": 1742757860,
+ "lastActiveWemos": 1742757869
+ },
+ "id": "455eb314-a6c5-4988-9c31-6efc3e44a815",
+ "timestamp": "2025-03-23T19:25:13+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 84,
+ "temperature": 29.8
+ },
+ "device": {
+ "lastActive": 1742757921,
+ "lastActiveWemos": 1742757869
+ },
+ "id": "42496d51-d8d5-4267-b30c-1a81efb1e2fb",
+ "timestamp": "2025-03-23T19:25:20+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 84,
+ "temperature": 29.8
+ },
+ "device": {
+ "lastActive": 1742757921,
+ "lastActiveWemos": 1742757869
+ },
+ "id": "14bf6fd1-e984-4904-8c45-4f4c89215152",
+ "timestamp": "2025-03-23T19:25:25+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "connected"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 84,
+ "temperature": 29.8
+ },
+ "device": {
+ "lastActive": 1742757921,
+ "lastActiveWemos": 1742757930
+ },
+ "id": "74310604-700e-4700-b3d6-6c15d163f395",
+ "timestamp": "2025-03-23T19:25:31+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "connected"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 84,
+ "temperature": 29.9
+ },
+ "device": {
+ "lastActive": 1742757921,
+ "lastActiveWemos": 1742757930
+ },
+ "id": "5132e9fa-ae9f-4648-a712-df27d712fff7",
+ "timestamp": "2025-03-23T19:25:32+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 35,
+ "temperature": 40.1
+ },
+ "device": {
+ "lastActive": 1742757983,
+ "lastActiveWemos": 1742757990
+ },
+ "id": "b47bd32b-5e8d-4c1e-b4ff-c08111776f86",
+ "timestamp": "2025-03-23T19:27:13+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 35,
+ "temperature": 40.1
+ },
+ "device": {
+ "lastActive": 1742757983,
+ "lastActiveWemos": 1742757990
+ },
+ "id": "b7c45fad-bb11-40c7-a38c-298290908a1c",
+ "timestamp": "2025-03-23T19:27:13+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 35,
+ "temperature": 40.1
+ },
+ "device": {
+ "lastActive": 1742757983,
+ "lastActiveWemos": 1742757990
+ },
+ "id": "eafa0428-3fca-4289-8cbe-a1a83d8f08b4",
+ "timestamp": "2025-03-23T19:27:21+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "connected"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 37,
+ "temperature": 39
+ },
+ "device": {
+ "lastActive": 1742758043,
+ "lastActiveWemos": 1742758050
+ },
+ "id": "fdd37d77-212f-404b-8b88-bc302808a980",
+ "timestamp": "2025-03-23T19:27:37+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "connected"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 37,
+ "temperature": 39
+ },
+ "device": {
+ "lastActive": 1742758043,
+ "lastActiveWemos": 1742758050
+ },
+ "id": "6a22bb2b-1dbe-459d-90be-4fa516fcb2d6",
+ "timestamp": "2025-03-23T19:27:37+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "connected"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 41,
+ "temperature": 38
+ },
+ "device": {
+ "lastActive": 1742758043,
+ "lastActiveWemos": 1742758050
+ },
+ "id": "649a63e5-29b6-41c5-a682-b1ad0b23e32b",
+ "timestamp": "2025-03-23T19:27:49+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "ON",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "connected"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 32,
+ "temperature": 40.4
+ },
+ "device": {
+ "lastActive": 1742758043,
+ "lastActiveWemos": 1742758050
+ },
+ "id": "971a3ffa-bf84-4692-a3e8-72e9d105e02c",
+ "timestamp": "2025-03-23T19:28:13+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "ON",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 31,
+ "temperature": 40.6
+ },
+ "device": {
+ "lastActive": 1742758043,
+ "lastActiveWemos": 1742758050
+ },
+ "id": "852b1e61-2a13-4f93-968d-34144a7c18c7",
+ "timestamp": "2025-03-23T19:28:21+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "ON",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 31,
+ "temperature": 40.6
+ },
+ "device": {
+ "lastActive": 1742758043,
+ "lastActiveWemos": 1742758050
+ },
+ "id": "f6f0fbd2-2c91-4507-93d8-0c840a9fe123",
+ "timestamp": "2025-03-23T19:28:21+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 31,
+ "temperature": 40.6
+ },
+ "device": {
+ "lastActive": 1742758103,
+ "lastActiveWemos": 1742758050
+ },
+ "id": "bb1aa8b1-7d96-4a9d-b0bf-e4f897152228",
+ "timestamp": "2025-03-23T19:28:25+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "connected"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 31,
+ "temperature": 40.6
+ },
+ "device": {
+ "lastActive": 1742758103,
+ "lastActiveWemos": 1742758111
+ },
+ "id": "9fe96133-d91b-4fae-b415-eb3f76ce516a",
+ "timestamp": "2025-03-23T19:28:37+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 40,
+ "temperature": 39.2
+ },
+ "device": {
+ "lastActive": 1742758103,
+ "lastActiveWemos": 1742758111
+ },
+ "id": "e7f982c4-8919-41c8-9a49-705e3d061bdd",
+ "timestamp": "2025-03-23T19:28:39+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 40,
+ "temperature": 39.2
+ },
+ "device": {
+ "lastActive": 1742758103,
+ "lastActiveWemos": 1742758111
+ },
+ "id": "f0a73bde-2627-4f8d-95d3-bc4a2e178569",
+ "timestamp": "2025-03-23T19:28:39+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 40,
+ "temperature": 39.2
+ },
+ "device": {
+ "lastActive": 1742758103,
+ "lastActiveWemos": 1742758111
+ },
+ "id": "09d1db10-6f82-48d5-801a-0c4de7738b64",
+ "timestamp": "2025-03-23T19:28:48+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "connected"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 44,
+ "temperature": 37.9
+ },
+ "device": {
+ "lastActive": 1742758103,
+ "lastActiveWemos": 1742758111
+ },
+ "id": "c7e89f08-d259-4c7b-91f1-b010509aa659",
+ "timestamp": "2025-03-23T19:28:52+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 44,
+ "temperature": 37.5
+ },
+ "device": {
+ "lastActive": 1742758103,
+ "lastActiveWemos": 1742758111
+ },
+ "id": "fbfd4b95-8c2a-4216-adce-eec7c55ca783",
+ "timestamp": "2025-03-23T19:28:55+00:00",
+ "change_type": "logs"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 44,
+ "temperature": 37.5
+ },
+ "device": {
+ "lastActive": 1742758164,
+ "lastActiveWemos": 1742758172
+ },
+ "id": "a24342fa-6f91-4828-bc35-97db3d5cb79c",
+ "timestamp": "2025-03-23T19:30:18+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 44,
+ "temperature": 37.5
+ },
+ "device": {
+ "lastActive": 1742758225,
+ "lastActiveWemos": 1742758172
+ },
+ "id": "a48ca562-aec7-4b96-9511-5bfcda371542",
+ "timestamp": "2025-03-23T19:30:28+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 44,
+ "temperature": 37.5
+ },
+ "device": {
+ "lastActive": 1742758225,
+ "lastActiveWemos": 1742758233
+ },
+ "id": "4a0de597-cb48-4695-aaf4-b97743f52d67",
+ "timestamp": "2025-03-23T19:30:49+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "clear",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 44,
+ "temperature": 37.5
+ },
+ "device": {
+ "lastActive": 1742758225,
+ "lastActiveWemos": 1742758233
+ },
+ "id": "719c0544-6084-4da7-ba26-6f845d7654ad",
+ "timestamp": "2025-03-23T19:30:55+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "detected",
+ "status": "on"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 44,
+ "temperature": 37.5
+ },
+ "device": {
+ "lastActive": 1742758347,
+ "lastActiveWemos": 1742758298
+ },
+ "id": "098345ca-13de-4cbe-9bc6-02a78fdf7972",
+ "timestamp": "2025-03-23T19:32:37+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "disabled",
+ "status": "off"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device online",
+ "systemWemos": "Device Online"
+ },
+ "dht11": {
+ "humidity": 44,
+ "temperature": 37.5
+ },
+ "device": {
+ "lastActive": 1742758347,
+ "lastActiveWemos": 1742758359
+ },
+ "id": "f26a953d-6f76-4f14-9f2c-ce3d2bd91fe9",
+ "timestamp": "2025-03-23T19:32:49+00:00",
+ "change_type": "security"
+ },
+ {
+ "security": {
+ "fan": "OFF",
+ "motion": "disabled",
+ "status": "off"
+ },
+ "smartcab": {
+ "last_access": "Terdaftar",
+ "servo_status": "Terkunci",
+ "status_device": "5b85e19d"
+ },
+ "control": {
+ "restartESP": false,
+ "restartWemos": false
+ },
+ "logs": {
+ "RFID": {
+ "status": "Connected"
+ },
+ "dht": {
+ "message": "DHT11 terhubung dengan baik",
+ "status": "error"
+ },
+ "error": "response payload read timed out",
+ "mpu": {
+ "message": "MPU6050 terhubung dengan baik",
+ "status": "connected"
+ },
+ "servo": {
+ "status": "Connected"
+ },
+ "systemESP": "Device offline",
+ "systemWemos": "Device Offline"
+ },
+ "dht11": {
+ "humidity": 44,
+ "temperature": 37.5
+ },
+ "device": {
+ "lastActive": 1742758347,
+ "lastActiveWemos": 1742758359
+ },
+ "id": "25d69949-230b-4c48-a9fb-a23d61a3029b",
+ "timestamp": "2025-03-23T19:33:57+00:00",
+ "change_type": "logs"
}
]
\ No newline at end of file