|
|
|
|
@ -0,0 +1,690 @@
|
|
|
|
|
-- ==============================================
|
|
|
|
|
-- WellNuo Full Migration for Supabase
|
|
|
|
|
-- Schema + Data from eluxnetworks.net PostgreSQL
|
|
|
|
|
-- Generated: 2025-12-17
|
|
|
|
|
-- ==============================================
|
|
|
|
|
|
|
|
|
|
-- STEP 1: Create Tables
|
|
|
|
|
-- WellNuo Database Schema for Supabase
|
|
|
|
|
-- Generated from eluxnetworks.net PostgreSQL dump
|
|
|
|
|
-- Date: 2025-12-17
|
|
|
|
|
|
|
|
|
|
-- =============================================
|
|
|
|
|
-- TABLE: deployments (patients/deployments)
|
|
|
|
|
-- =============================================
|
|
|
|
|
CREATE TABLE IF NOT EXISTS deployments (
|
|
|
|
|
deployment_id INTEGER GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
|
|
|
|
|
time_edit REAL,
|
|
|
|
|
user_edit INTEGER,
|
|
|
|
|
time_zone_s TEXT,
|
|
|
|
|
persons INTEGER,
|
|
|
|
|
gender INTEGER,
|
|
|
|
|
race INTEGER,
|
|
|
|
|
born INTEGER,
|
|
|
|
|
pets INTEGER,
|
|
|
|
|
context TEXT,
|
|
|
|
|
alarm_details TEXT
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
-- =============================================
|
|
|
|
|
-- TABLE: devices (sensors/devices)
|
|
|
|
|
-- =============================================
|
|
|
|
|
CREATE TABLE IF NOT EXISTS devices (
|
|
|
|
|
device_id INTEGER PRIMARY KEY,
|
|
|
|
|
device_mac TEXT NOT NULL,
|
|
|
|
|
well_id INTEGER,
|
|
|
|
|
description TEXT,
|
|
|
|
|
location INTEGER,
|
|
|
|
|
close_to TEXT,
|
|
|
|
|
radar_threshold TEXT,
|
|
|
|
|
fw_version TEXT,
|
|
|
|
|
hw_version TEXT,
|
|
|
|
|
ble_scan_period INTEGER,
|
|
|
|
|
ble_scan_duration INTEGER,
|
|
|
|
|
temperature_calib TEXT,
|
|
|
|
|
humidity_calib TEXT,
|
|
|
|
|
reporting_period_s INTEGER,
|
|
|
|
|
reboot_time REAL,
|
|
|
|
|
led_schema TEXT,
|
|
|
|
|
alert_details TEXT,
|
|
|
|
|
other TEXT,
|
|
|
|
|
group_id INTEGER,
|
|
|
|
|
UNIQUE(well_id, device_mac)
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
-- =============================================
|
|
|
|
|
-- TABLE: person_details (users)
|
|
|
|
|
-- =============================================
|
|
|
|
|
CREATE TABLE IF NOT EXISTS person_details (
|
|
|
|
|
user_id INTEGER GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
|
|
|
|
|
role_ids TEXT,
|
|
|
|
|
access_to_deployments TEXT,
|
|
|
|
|
email TEXT,
|
|
|
|
|
user_name TEXT,
|
|
|
|
|
first_name TEXT,
|
|
|
|
|
last_name TEXT,
|
|
|
|
|
address_street TEXT,
|
|
|
|
|
address_city TEXT,
|
|
|
|
|
address_zip TEXT,
|
|
|
|
|
address_state TEXT,
|
|
|
|
|
address_country TEXT,
|
|
|
|
|
time_edit REAL,
|
|
|
|
|
user_edit INTEGER,
|
|
|
|
|
phone_number TEXT,
|
|
|
|
|
picture TEXT,
|
|
|
|
|
key TEXT -- password field
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
-- =============================================
|
|
|
|
|
-- TABLE: deployment_details
|
|
|
|
|
-- =============================================
|
|
|
|
|
CREATE TABLE IF NOT EXISTS deployment_details (
|
|
|
|
|
deployment_id INTEGER PRIMARY KEY,
|
|
|
|
|
beneficiary_id INTEGER,
|
|
|
|
|
caretaker_id INTEGER,
|
|
|
|
|
owner_id INTEGER,
|
|
|
|
|
installer_id INTEGER,
|
|
|
|
|
devices TEXT, -- JSON array of device MACs
|
|
|
|
|
address_street TEXT,
|
|
|
|
|
address_city TEXT,
|
|
|
|
|
address_zip TEXT,
|
|
|
|
|
address_state TEXT,
|
|
|
|
|
address_country TEXT,
|
|
|
|
|
wifis TEXT,
|
|
|
|
|
lat REAL,
|
|
|
|
|
lng REAL,
|
|
|
|
|
gps_age INTEGER,
|
|
|
|
|
note TEXT,
|
|
|
|
|
floor_plan TEXT,
|
|
|
|
|
overlapps TEXT
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
-- =============================================
|
|
|
|
|
-- TABLE: deployment_history
|
|
|
|
|
-- =============================================
|
|
|
|
|
CREATE TABLE IF NOT EXISTS deployment_history (
|
|
|
|
|
id INTEGER PRIMARY KEY,
|
|
|
|
|
time REAL,
|
|
|
|
|
proximity TEXT
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
-- =============================================
|
|
|
|
|
-- TABLE: disclaimers
|
|
|
|
|
-- =============================================
|
|
|
|
|
CREATE TABLE IF NOT EXISTS disclaimers (
|
|
|
|
|
id INTEGER GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
|
|
|
|
|
first_name TEXT,
|
|
|
|
|
last_name TEXT,
|
|
|
|
|
user_name TEXT,
|
|
|
|
|
email TEXT,
|
|
|
|
|
devices TEXT,
|
|
|
|
|
date TIMESTAMPTZ,
|
|
|
|
|
policy_version TEXT
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
-- =============================================
|
|
|
|
|
-- INDEXES (for performance)
|
|
|
|
|
-- =============================================
|
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_devices_well_id ON devices(well_id);
|
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_person_details_email ON person_details(email);
|
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_person_details_user_name ON person_details(user_name);
|
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_deployment_details_beneficiary ON deployment_details(beneficiary_id);
|
|
|
|
|
|
|
|
|
|
-- =============================================
|
|
|
|
|
-- Enable Row Level Security (RLS) for Supabase
|
|
|
|
|
-- =============================================
|
|
|
|
|
ALTER TABLE deployments ENABLE ROW LEVEL SECURITY;
|
|
|
|
|
ALTER TABLE devices ENABLE ROW LEVEL SECURITY;
|
|
|
|
|
ALTER TABLE person_details ENABLE ROW LEVEL SECURITY;
|
|
|
|
|
ALTER TABLE deployment_details ENABLE ROW LEVEL SECURITY;
|
|
|
|
|
ALTER TABLE deployment_history ENABLE ROW LEVEL SECURITY;
|
|
|
|
|
ALTER TABLE disclaimers ENABLE ROW LEVEL SECURITY;
|
|
|
|
|
|
|
|
|
|
-- Note: You'll need to create RLS policies based on your auth requirements
|
|
|
|
|
-- Example:
|
|
|
|
|
-- CREATE POLICY "Users can view their own data" ON person_details
|
|
|
|
|
-- FOR SELECT USING (auth.uid()::text = user_id::text);
|
|
|
|
|
|
|
|
|
|
-- ===============================================
|
|
|
|
|
-- STEP 2: Insert Data
|
|
|
|
|
-- ===============================================
|
|
|
|
|
|
|
|
|
|
-- Deployments data (45 rows)
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (23, 1.7278488e+09, 1, 'America/Los_Angeles', 1, 2, 2, 1973, 2, NULL, NULL);
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (27, 1.7278488e+09, 1, 'America/Los_Angeles', 1, 1, 1, NULL, 0, NULL, NULL);
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (30, 1.7313656e+09, 30, 'Europe/Berlin', 1, 1, 1, 1960, 0, NULL, NULL);
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (32, 1.731455e+09, 32, 'US/Pacific', 0, 1, 1, 0, 0, NULL, NULL);
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (33, 1.7330917e+09, 32, 'US/Pacific', 0, 1, 0, 0, 0, NULL, NULL);
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (34, 1.7330918e+09, 32, 'US/Pacific', 0, 1, 2, 0, 0, NULL, NULL);
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (28, 1.7346554e+09, 32, 'Europe/Berlin', 1, 2, 1, 0, 0, NULL, NULL);
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (39, 1.7388148e+09, 32, 'US/Pacific', 0, 1, 0, 1983, 0, NULL, NULL);
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (41, 1.7413007e+09, 32, 'Europe/Sarajevo', 4, 1, 1, 1993, 0, NULL, NULL);
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (26, 1.7426984e+09, 32, 'Europe/Berlin', 1, 2, 1, 0, 0, NULL, NULL);
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (35, 1.743305e+09, 32, 'US/Eastern', 0, 1, 2, 1978, 2, NULL, NULL);
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (38, 1.7388636e+09, 32, 'Europe/Zagreb', 1, 2, 1, 1944, 0, NULL, '{"enabled":"111","alone_hours_alarm":"28.9","alone_alarm_method":"PHONE","alone_hours_warning":"-28.2","alone_warning_method":"SMS","alone_warning_armed":true,"alone_alarm_armed":true}');
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (22, 1.7595299e+09, 32, 'America/Los_Angeles', 1, 1, 1, 1969, 1, NULL, '{"enabled":"101","alone_hours_alarm":48,"alone_alarm_method":"SMS","alone_alarm_armed":false,"alone_hours_warning":24,"alone_warning_method":"PHONE","alone_warning_armed":false,"rearm_policy":"At midnight","temperature_high_warning":"80","temperature_high_alarm":"90","temperature_low_warning":"60","temperature_low_alarm":"50","enabled_alarms":"000000000000","armed_states":"000000000000","stuck_minutes_warning":420,"stuck_warning_method_0":"SMS","stuck_minutes_alarm":600,"stuck_alarm_method_1":"PHONE","absent_minutes_warning":20,"absent_warning_method_2":"SMS","absent_minutes_alarm":30,"absent_alarm_method_3":"PHONE","radar_alarm_method_8":"MSG","pressure_alarm_method_9":"MSG","light_alarm_method_10":"MSG","smell_alarm_method_11":"EMAIL","filter":"+80"}');
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (21, 1.7533265e+09, 32, 'America/Los_Angeles', 1, 1, 1, 1940, 0, 'Person takes naps in living room and watches tv there. In office he mostly consumes media on the computer. He has 2 bathrooms.', '{"enabled": "011", "alone_hours_alarm": "34.6", "alone_alarm_method": "SMS", "alone_hours_warning": "240.9", "alone_warning_method": "EMAIL", "alone_warning_armed": true, "armed_states": "101", "last_triggered_utc": "2025-08-02T19:32:23.626974", "alone_alarm_armed": true}');
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (42, 1.7452704e+09, 32, 'US/Pacific', 4, 1, 0, 0, 0, NULL, NULL);
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (43, 1.757289e+09, 32, 'Europe/Zagreb', 1, 2, 1, 1941, 0, NULL, NULL);
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (25, 1.7572906e+09, 32, 'Europe/Zagreb', 2, 2, 1, 1947, 0, NULL, NULL);
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (37, 1.7347462e+09, 46, 'US/Pacific', 3, 1, 1, 1972, 0, NULL, '{"enabled":"100","alone_hours_alarm":48,"alone_alarm_method":"SMS","alone_hours_warning":24,"alone_warning_method":"PHONE"}');
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (40, 1.7591177e+09, 0, 'America/Los_Angeles', 3, 0, 5, 1962, 0, NULL, NULL);
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (44, 1.7625755e+09, 32, 'US/Pacific', 4, 1, 2, 0, 0, NULL, '{"enabled": "001", "alone_hours_alarm": 48, "alone_alarm_method": "SMS", "alone_alarm_armed": false, "alone_hours_warning": 24, "alone_warning_method": "PHONE", "alone_warning_armed": false, "rearm_policy": "At midnight", "temperature_high_warning": "80", "temperature_high_alarm": "90", "temperature_low_warning": "60", "temperature_low_alarm": "50", "enabled_alarms": "000000000000", "armed_states": "001", "stuck_minutes_warning": 420, "stuck_warning_method_0": "SMS", "stuck_minutes_alarm": 600, "stuck_alarm_method_1": "PHONE", "absent_minutes_warning": 20, "absent_warning_method_2": "SMS", "absent_minutes_alarm": 30, "absent_alarm_method_3": "PHONE", "radar_alarm_method_8": "MSG", "pressure_alarm_method_9": "MSG", "light_alarm_method_10": "MSG", "smell_alarm_method_11": "EMAIL", "filter": "6", "last_triggered_utc": "2025-07-17T22:36:10.783160"}');
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (45, 1.765575e+09, 32, 'US/Pacific', 1, 1, 1, 1940, 1, NULL, NULL);
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (48, 1.7550423e+09, 32, 'US/Pacific', 1, 2, 1, 0, 0, NULL, NULL);
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (46, 1.7553032e+09, 32, 'US/Pacific', 1, 2, 1, 0, 0, NULL, NULL);
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (29, 1.7588419e+09, 43, 'Europe/Berlin', 1, 1, 1, 1940, 0, NULL, '{"enabled":"111","alone_hours_alarm":48,"alone_alarm_method":"SMS","alone_alarm_armed":false,"alone_hours_warning":"31.5","alone_warning_method":"SMS","alone_warning_armed":true,"rearm_policy":"At midnight"}');
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (49, 1.7589321e+09, 0, 'America/Los_Angeles', 3, 0, 5, 1962, 0, NULL, NULL);
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (50, 1.7589407e+09, 0, 'America/Los_Angeles', 3, 0, 5, 1962, 0, NULL, NULL);
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (51, 1.7591672e+09, 32, 'US/Pacific', 2, 1, 1, 1940, 0, NULL, NULL);
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (52, 1.7591674e+09, 32, 'US/Pacific', 2, 1, 1, 1940, 0, NULL, NULL);
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (53, 1.7591674e+09, 32, 'US/Pacific', 2, 1, 1, 1940, 0, NULL, NULL);
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (54, 1.7591674e+09, 32, 'US/Pacific', 2, 1, 1, 1940, 0, NULL, NULL);
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (56, 1.7591685e+09, 32, 'US/Pacific', 2, 1, 1, 1940, 0, NULL, NULL);
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (57, 1.7591685e+09, 32, 'US/Pacific', 2, 1, 1, 1940, 0, NULL, NULL);
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (58, 1.7591685e+09, 32, 'US/Pacific', 2, 1, 1, 1940, 0, NULL, NULL);
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (59, 1.7591686e+09, 32, 'US/Pacific', 2, 1, 1, 1940, 0, NULL, NULL);
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (60, 1.7591686e+09, 32, 'US/Pacific', 2, 1, 1, 1940, 0, NULL, NULL);
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (61, 1.7591686e+09, 32, 'US/Pacific', 2, 1, 1, 1940, 0, NULL, NULL);
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (62, 1.7591686e+09, 32, 'US/Pacific', 2, 1, 1, 1940, 0, NULL, NULL);
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (63, 1.7591689e+09, 32, 'US/Pacific', 2, 1, 1, 1940, 0, NULL, NULL);
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (24, 1.7592801e+09, 32, 'America/Los_Angeles', 2, 1, 2, 1972, 0, NULL, '{"enabled": "111", "alone_hours_alarm": 48, "alone_alarm_method": "SMS", "alone_alarm_armed": false, "alone_hours_warning": 24, "alone_warning_method": "PHONE", "alone_warning_armed": false, "rearm_policy": "At midnight", "temperature_high_warning": "27", "temperature_high_alarm": "32", "temperature_low_warning": "16", "temperature_low_alarm": "10", "enabled_alarms": "000000000000", "armed_states": "111", "stuck_minutes_warning": 420, "stuck_warning_method_0": "SMS", "stuck_minutes_alarm": 600, "stuck_alarm_method_1": "PHONE", "absent_minutes_warning": 20, "absent_warning_method_2": "SMS", "absent_minutes_alarm": 30, "absent_alarm_method_3": "PHONE", "radar_alarm_method_8": "MSG", "pressure_alarm_method_9": "MSG", "light_alarm_method_10": "MSG", "smell_alarm_method_11": "EMAIL", "filter": "6", "armed": "001", "last_triggered_utc": "2025-08-13T23:20:30.376830"}');
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (65, 1.7606982e+09, 68, 'US/East-Indiana', 1, 1, 1, 1960, 0, NULL, NULL);
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (66, 1.7606984e+09, 68, 'Europe/London', 1, 1, 1, 1960, 0, NULL, NULL);
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (64, 1.7626422e+09, 68, 'US/Eastern', 0, 1, 0, 0, 0, NULL, NULL);
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (67, 1.764715e+09, 32, 'US/Eastern', 0, 1, 0, 0, 0, NULL, NULL);
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (68, 1.7647191e+09, 32, 'US/Pacific', 0, 1, 0, 0, 0, NULL, NULL);
|
|
|
|
|
INSERT INTO deployments (deployment_id, time_edit, user_edit, time_zone_s, persons, gender, race, born, pets, context, alarm_details) OVERRIDING SYSTEM VALUE VALUES (69, 1.7647478e+09, 70, 'US/Pacific', 0, 1, 0, 0, 0, NULL, NULL);
|
|
|
|
|
|
|
|
|
|
-- Person details data (8 rows)
|
|
|
|
|
INSERT INTO person_details (user_id, role_ids, access_to_deployments, email, user_name, first_name, last_name, address_street, address_city, address_zip, address_state, address_country, time_edit, user_edit, phone_number, picture, key) OVERRIDING SYSTEM VALUE VALUES (48, '1', NULL, 'dur_radic@test.com', 'bozradic', 'Đurđica', 'Božičević-Radić', 'A.T. Mimare 38', 'Zagreb', '10000', '', 'Croatia', 1.7381199e+09, 32, '', '/', 'duradic_2025!');
|
|
|
|
|
INSERT INTO person_details (user_id, role_ids, access_to_deployments, email, user_name, first_name, last_name, address_street, address_city, address_zip, address_state, address_country, time_edit, user_edit, phone_number, picture, key) OVERRIDING SYSTEM VALUE VALUES (36, '1,2', '29', 'tkleine@gmx.net', 'tammo', 'Tammo', 'Kleine', 'None', 'None', 'None', 'None', 'Germany', 1.7496644e+09, 32, '+491602731521', '/', 'tammo_2025');
|
|
|
|
|
INSERT INTO person_details (user_id, role_ids, access_to_deployments, email, user_name, first_name, last_name, address_street, address_city, address_zip, address_state, address_country, time_edit, user_edit, phone_number, picture, key) OVERRIDING SYSTEM VALUE VALUES (25, '1,2', '21,24,38,32', 'fred@zmrzli.com', 'fzmrzli', 'Ferdinand', 'Zmrzli', '661 Encore Way', 'San Jose', '95134', 'CA', 'USA', 1.7504643e+09, 32, '-(408)550-5424', '/', 'fred1');
|
|
|
|
|
INSERT INTO person_details (user_id, role_ids, access_to_deployments, email, user_name, first_name, last_name, address_street, address_city, address_zip, address_state, address_country, time_edit, user_edit, phone_number, picture, key) OVERRIDING SYSTEM VALUE VALUES (56, '1', NULL, 'zoricadukic@gmail.com', 'zoricadukic', 'Zorica', 'Dukic', 'Kopernikova 58', 'Zagreb', '10000', '', 'Croatia', 1.7461293e+09, 55, '', '/', 'Zduk1c_2025!');
|
|
|
|
|
INSERT INTO person_details (user_id, role_ids, access_to_deployments, email, user_name, first_name, last_name, address_street, address_city, address_zip, address_state, address_country, time_edit, user_edit, phone_number, picture, key) OVERRIDING SYSTEM VALUE VALUES (55, '2', '43', 'alex@gofoundingteams.com', 'adukic', 'Alex', 'Dukic', 'None', 'None', 'None', 'None', 'USA', 1.7573581e+09, 32, '-(408)507-5808', '/', 'AdUk1c_2025!');
|
|
|
|
|
INSERT INTO person_details (user_id, role_ids, access_to_deployments, email, user_name, first_name, last_name, address_street, address_city, address_zip, address_state, address_country, time_edit, user_edit, phone_number, picture, key) OVERRIDING SYSTEM VALUE VALUES (58, '1,2', '44', 'hiro11s@stanford.edu', 'hsakaguchi', 'Hiroki', 'Sakaguchi', 'None', 'None', 'None', 'CA', 'USA', 1.7526289e+09, 32, '1650248-4732', '/', 's@keg_2025!');
|
|
|
|
|
INSERT INTO person_details (user_id, role_ids, access_to_deployments, email, user_name, first_name, last_name, address_street, address_city, address_zip, address_state, address_country, time_edit, user_edit, phone_number, picture, key) OVERRIDING SYSTEM VALUE VALUES (34, '1,2', '30', 'tkleine@gmx.net', 'hkleine', 'Helga', 'Kleine', 'None', '', '', '', 'Germany', 1.7495953e+09, 43, '', '/', 'kleine2000');
|
|
|
|
|
INSERT INTO person_details (user_id, role_ids, access_to_deployments, email, user_name, first_name, last_name, address_street, address_city, address_zip, address_state, address_country, time_edit, user_edit, phone_number, picture, key) OVERRIDING SYSTEM VALUE VALUES (43, '2', '21,38,29,41,42', '_anand@emeistechnologies.com', 'anandk', 'Anand', 'Kumar', 'None', 'None', 'None', 'None', 'India', 1.7526214e+09, 32, 'None', '/', 'anandk_8');
|
|
|
|
|
|
|
|
|
|
-- Deployment details data (23 rows)
|
|
|
|
|
INSERT INTO deployment_details (deployment_id, beneficiary_id, caretaker_id, owner_id, installer_id, devices, address_street, address_city, address_zip, address_state, address_country, wifis, lat, lng, gps_age, note, floor_plan, overlapps) VALUES (30, 35, 3, 3, 3, '["64B7088907F8"]', '', '', '', '', '', '', 0, 0, 0, 'Thomas', NULL, NULL);
|
|
|
|
|
INSERT INTO deployment_details (deployment_id, beneficiary_id, caretaker_id, owner_id, installer_id, devices, address_street, address_city, address_zip, address_state, address_country, wifis, lat, lng, gps_age, note, floor_plan, overlapps) VALUES (27, 33, 7, 7, 7, '[''64B708890294'', ''64B7088905E4'', ''64B708896BF0'', ''64B7088905E8'', ''64B7088904FC'']', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'hitleman', NULL, NULL);
|
|
|
|
|
INSERT INTO deployment_details (deployment_id, beneficiary_id, caretaker_id, owner_id, installer_id, devices, address_street, address_city, address_zip, address_state, address_country, wifis, lat, lng, gps_age, note, floor_plan, overlapps) VALUES (28, 37, 3, 3, 3, '["64B7088908C0"]', '', '', '999', '', '', '', 0, 0, 0, 'ingrid', NULL, NULL);
|
|
|
|
|
INSERT INTO deployment_details (deployment_id, beneficiary_id, caretaker_id, owner_id, installer_id, devices, address_street, address_city, address_zip, address_state, address_country, wifis, lat, lng, gps_age, note, floor_plan, overlapps) VALUES (39, 49, 49, 32, 49, '64B70889043C,64B70888FA88,64B7088908A0', '3234 Upper Lock Ave', 'Belmont', '94002', '', '', '', 37.514614, -122.31349, 0, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO deployment_details (deployment_id, beneficiary_id, caretaker_id, owner_id, installer_id, devices, address_street, address_city, address_zip, address_state, address_country, wifis, lat, lng, gps_age, note, floor_plan, overlapps) VALUES (26, 27, 3, 3, 3, '["64B708890AE0", "64B7088908D0", "64B70889095C"]', '', '', '', '', '', '', 0, 0, 0, 'michael', NULL, NULL);
|
|
|
|
|
INSERT INTO deployment_details (deployment_id, beneficiary_id, caretaker_id, owner_id, installer_id, devices, address_street, address_city, address_zip, address_state, address_country, wifis, lat, lng, gps_age, note, floor_plan, overlapps) VALUES (35, 44, 30, 32, 30, '["64B708890448", "64B70889074C", "64B70888F8BC", "64B708890210", "64B708890474","64B7088901E4","64B70889032C"]', '1401 Dolive Dr', 'Orlando', '32803', 'FL ', 'USA', '', 28.569447, -81.36238, 0, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO deployment_details (deployment_id, beneficiary_id, caretaker_id, owner_id, installer_id, devices, address_street, address_city, address_zip, address_state, address_country, wifis, lat, lng, gps_age, note, floor_plan, overlapps) VALUES (32, 42, 30, 30, 30, '["64B708890A4C","64B708890470"]', '', '', '', '', '', '', 0, 0, 0, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO deployment_details (deployment_id, beneficiary_id, caretaker_id, owner_id, installer_id, devices, address_street, address_city, address_zip, address_state, address_country, wifis, lat, lng, gps_age, note, floor_plan, overlapps) VALUES (29, 34, 3, 3, 3, '["64B708890388", "64B70889087C", "64B708896FE4", "64B70889030C","64B70889036C"]', 'None', 'Berlin', '10115', '', 'Germany', '', 0, 0, 0, 'tammo', '{"version":2,"floors":[{"rooms":[{"id":"room-1","type":"Bedroom","description":"","x":190,"y":120,"width":100,"height":100}],"doors":[],"plugs":[],"wellplugs":[]}],"nextId":2}', NULL);
|
|
|
|
|
INSERT INTO deployment_details (deployment_id, beneficiary_id, caretaker_id, owner_id, installer_id, devices, address_street, address_city, address_zip, address_state, address_country, wifis, lat, lng, gps_age, note, floor_plan, overlapps) VALUES (21, 25, 1, 1, 1, '["142B2F81A5B4","10061C15C3A0","901506CA3AAC","901506CA3D04","10061C159AFC","142B2F81AABC","901506CA3C08"]', '661 Encore Way', 'San Jose', '95134', 'CA', 'USA', '', 0, 0, 0, 'fred', '{"version":3,"units":"feet","overlapping":["267:273","273:291","269:291"],"floors":[{"rooms":[{"id":"room-5","type":"Bedroom","description":"","x":250,"y":-50,"width":130,"height":120},{"id":"room-9","type":"Hallway","description":"","x":210,"y":30,"width":40,"height":340},{"id":"room-10","type":"Bathroom Main","description":"","x":120,"y":30,"width":90,"height":80},{"id":"room-11","type":"Office","description":"","x":250,"y":70,"width":100,"height":100},{"id":"room-12","type":"Kitchen","description":"","x":120,"y":110,"width":90,"height":60},{"id":"room-13","type":"Living Room","description":"","x":250,"y":170,"width":130,"height":130},{"id":"room-14","type":"Other","description":"Balcony","x":350,"y":60,"width":60,"height":150},{"id":"room-15","type":"Dining Room","description":"","x":120,"y":170,"width":90,"height":80},{"id":"room-20","type":"Garage","description":"","x":-140,"y":60,"width":260,"height":140},{"id":"room-47","type":"Bathroom Guest","description":"","x":120,"y":-50,"width":130,"height":80}],"doors":[{"id":"door-18","roomId":"room-11","wall":"left","position":20},{"id":"door-19","roomId":"room-10","wall":"right","position":60},{"id":"door-21","roomId":"room-20","wall":"right","position":70},{"id":"door-32","roomId":"room-9","wall":"right","position":20},{"id":"door-38","roomId":"room-14","wall":"left","position":130}],"plugs":[{"id":"plug-28","roomId":"room-5","wall":"right","position":60},{"id":"plug-31","roomId":"room-5","wall":"left","position":60},{"id":"plug-33","roomId":"room-13","wall":"bottom","position":40},{"id":"plug-34","roomId":"room-13","wall":"right","position":60},{"id":"plug-35","roomId":"room-13","wall":"top","position":90},{"id":"plug-39","roomId":"room-11","wall":"top","position":40},{"id":"plug-43","roomId":"room-15","wall":"top","position":60},{"id":"plug-65","roomId":"room-12","wall":"top","position":80,"isOnWall":true,"label":""},{"id":"plug-68","roomId":"room-11","wall":"bottom","position":60,"isOnWall":true,"label":""}],"wellplugs":[{"id":"wellplug-51","roomId":"room-11","isOnWall":false,"x":327.2421523243415,"y":116.38009797366247,"label":"431"},{"id":"wellplug-52","roomId":"room-47","wall":"bottom","position":90,"isOnWall":true,"label":"473"},{"id":"wellplug-53","roomId":"room-10","wall":"top","position":30,"isOnWall":true,"label":"474"},{"id":"wellplug-54","roomId":"room-12","wall":"top","position":40,"isOnWall":true,"label":"472"},{"id":"wellplug-55","roomId":"room-15","wall":"bottom","position":50,"isOnWall":true,"label":"471"},{"id":"wellplug-56","roomId":"room-13","wall":"top","position":30,"isOnWall":true,"label":"470"},{"id":"wellplug-61","roomId":"room-5","isOnWall":false,"x":281.02262619669284,"y":-37.564528619445916,"label":"475"}],"furniture":[{"id":"furniture-74","type":"bed-queen","roomId":"room-5","x":280,"y":-50,"width":60,"height":80,"color":"rgb(0,100,0)","rotation":0},{"id":"furniture-75","type":"seating","roomId":"room-13","x":240,"y":220,"width":70,"height":30,"color":"rgb(0,100,0)","rotation":270},{"id":"furniture-76","type":"seating","roomId":"room-11","x":290,"y":170,"width":50,"height":20,"color":"rgb(0,100,0)","rotation":0},{"id":"furniture-77","type":"table","roomId":"room-13","x":300,"y":210,"width":20,"height":40,"color":"#f00","rotation":0}]}],"nextId":78}', '["267:273", "273:291", "269:291"]');
|
|
|
|
|
INSERT INTO deployment_details (deployment_id, beneficiary_id, caretaker_id, owner_id, installer_id, devices, address_street, address_city, address_zip, address_state, address_country, wifis, lat, lng, gps_age, note, floor_plan, overlapps) VALUES (38, 48, 47, 32, 47, '["64B7088901D0", "64B7088909B0", "64B70888FAA0", "64B708890970"]', 'A.T. Mimare 38', 'Zagreb', '10000', '', 'Croatia', '', 45.807472, 15.903289, 0, NULL, '{"version":3,"units":"feet","overlapping":["248:240","240:270"],"floors":[{"rooms":[{"id":"room-2","type":"Kitchen","description":"","x":750,"y":440,"width":100,"height":100},{"id":"room-3","type":"Office","description":"","x":670,"y":350,"width":180,"height":90},{"id":"room-4","type":"Living Room","description":"","x":460,"y":440,"width":290,"height":220},{"id":"room-5","type":"Bathroom Main","description":"","x":520,"y":350,"width":150,"height":90},{"id":"room-6","type":"Hallway","description":"","x":460,"y":350,"width":60,"height":90},{"id":"room-7","type":"Bedroom","description":"","x":700,"y":540,"width":150,"height":120}],"doors":[{"id":"door-8","roomId":"room-3","wall":"bottom","position":40},{"id":"door-9","roomId":"room-6","wall":"right","position":40},{"id":"door-10","roomId":"room-6","wall":"left","position":40},{"id":"door-11","roomId":"room-4","wall":"right","position":50},{"id":"door-12","roomId":"room-7","wall":"top","position":20}],"plugs":[],"wellplugs":[{"id":"wellplug-13","roomId":"room-7","wall":"right","position":90,"isOnWall":true,"label":"234"},{"id":"wellplug-14","roomId":"room-4","wall":"top","position":150,"isOnWall":true,"label":"240"},{"id":"wellplug-15","roomId":"room-5","wall":"bottom","position":60,"isOnWall":true,"label":"248"},{"id":"wellplug-16","roomId":"room-2","wall":"left","position":90,"isOnWall":true,"label":"270"}]}],"nextId":17}', '["248:240", "240:270"]');
|
|
|
|
|
INSERT INTO deployment_details (deployment_id, beneficiary_id, caretaker_id, owner_id, installer_id, devices, address_street, address_city, address_zip, address_state, address_country, wifis, lat, lng, gps_age, note, floor_plan, overlapps) VALUES (64, 69, 68, 32, 32, '10061C159A6C,142B2F819E0C,142B2F81A284,901506CA42A4,10061C159A20', '8 Lisa Lane', 'East Hanover', '', 'NJ', 'United States', '', 0, 0, 0, NULL, '{"version":3,"units":"feet","overlapping":[],"floors":[{"rooms":[{"id":"room-1","type":"Living Room","description":"","x":630,"y":280,"width":160,"height":170},{"id":"room-2","type":"Other","description":"","x":570,"y":450,"width":220,"height":60},{"id":"room-3","type":"Other","description":"","x":570,"y":280,"width":60,"height":170}],"doors":[{"id":"door-4","roomId":"room-3","wall":"left","position":160},{"id":"door-5","roomId":"room-3","wall":"right","position":30}],"plugs":[],"wellplugs":[],"furniture":[]}],"nextId":6}', '[]');
|
|
|
|
|
INSERT INTO deployment_details (deployment_id, beneficiary_id, caretaker_id, owner_id, installer_id, devices, address_street, address_city, address_zip, address_state, address_country, wifis, lat, lng, gps_age, note, floor_plan, overlapps) VALUES (65, 0, 0, 0, 0, '[]', '8 Munn Ave', 'Riverdale', '07457', 'NJ', 'USA', '[]', 0, 0, 0, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO deployment_details (deployment_id, beneficiary_id, caretaker_id, owner_id, installer_id, devices, address_street, address_city, address_zip, address_state, address_country, wifis, lat, lng, gps_age, note, floor_plan, overlapps) VALUES (44, 58, 58, 32, 58, '["901506CA3D44","142B2F81AA74","10061C15C308","142B2F81A034","142B2F819E28"]', '', '', '', 'CA', 'USA', '', 0, 0, 0, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO deployment_details (deployment_id, beneficiary_id, caretaker_id, owner_id, installer_id, devices, address_street, address_city, address_zip, address_state, address_country, wifis, lat, lng, gps_age, note, floor_plan, overlapps) VALUES (48, 64, 63, 32, 63, '["142B2F81A074","10061C159AF0","10061C1599BC"]', '', '', '', 'CA', 'USA', '', 0, 0, 0, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO deployment_details (deployment_id, beneficiary_id, caretaker_id, owner_id, installer_id, devices, address_street, address_city, address_zip, address_state, address_country, wifis, lat, lng, gps_age, note, floor_plan, overlapps) VALUES (46, 62, 62, 32, 62, '["142B2F81AA9C","142B2F81A058"]', '', 'San Francisco', '', 'CA', 'USA', '', 0, 0, 0, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO deployment_details (deployment_id, beneficiary_id, caretaker_id, owner_id, installer_id, devices, address_street, address_city, address_zip, address_state, address_country, wifis, lat, lng, gps_age, note, floor_plan, overlapps) VALUES (43, 56, 55, 32, 55, '142B2F81A2B4,142B2F81A3BC,142B2F81A134,901506CA4098,142B2F81A66C,901506CA3B34', 'Kopernikova 58', 'Zagreb', '10000', '', 'Croatia', '', 45.771862, 15.997579, 0, NULL, '{"version":3,"units":"feet","overlapping":[],"floors":[{"rooms":[{"id":"room-1","type":"Living Room","description":"","x":460,"y":340,"width":170,"height":170},{"id":"room-2","type":"Hallway","description":"","x":540,"y":240,"width":40,"height":100},{"id":"room-3","type":"Kitchen","description":"","x":460,"y":240,"width":80,"height":100},{"id":"room-4","type":"Bathroom Guest","description":"","x":580,"y":240,"width":50,"height":40},{"id":"room-9","type":"Hallway","description":"","x":580,"y":280,"width":50,"height":60},{"id":"room-12","type":"Stairs","description":"","x":600,"y":340,"width":30,"height":120},{"id":"room-50","type":"Backyard","description":"","x":460,"y":510,"width":170,"height":200}],"doors":[{"id":"door-48","roomId":"room-2","wall":"top","position":20},{"id":"door-49","roomId":"room-4","wall":"left","position":20}],"plugs":[{"id":"plug-51","roomId":"room-1","wall":"left","position":80,"isOnWall":true,"label":""},{"id":"plug-52","roomId":"room-1","wall":"right","position":150,"isOnWall":true,"label":""},{"id":"plug-53","roomId":"room-3","wall":"left","position":70,"isOnWall":true,"label":""},{"id":"plug-54","roomId":"room-9","wall":"right","position":30,"isOnWall":true,"label":""},{"id":"plug-55","roomId":"room-2","wall":"left","position":70,"isOnWall":true,"label":""},{"id":"plug-56","roomId":"room-2","wall":"left","position":20,"isOnWall":true,"label":""},{"id":"plug-57","roomId":"room-1","wall":"top","position":20,"isOnWall":true,"label":""}],"wellplugs":[]},{"rooms":[{"id":"room-15","type":"Bedroom Master","description":"","x":460,"y":420,"width":170,"height":160},{"id":"room-16","type":"Stairs","description":"","x":600,"y":420,"width":30,"height":120},{"id":"room-17","type":"Bathroom Main","description":"","x":560,"y":310,"width":70,"height":70},{"id":"room-18","type":"Hallway","description":"","x":560,"y":380,"width":70,"height":40},{"id":"room-19","type":"Bedroom","description":"","x":460,"y":310,"width":100,"height":110},{"id":"room-34","type":"Balcony","description":"","x":460,"y":580,"width":170,"height":50}],"doors":[{"id":"door-35","roomId":"room-18","wall":"left","position":20},{"id":"door-46","roomId":"room-17","wall":"bottom","position":20},{"id":"door-47","roomId":"room-18","wall":"bottom","position":20}],"plugs":[{"id":"plug-58","roomId":"room-17","wall":"right","position":50,"isOnWall":true,"label":""},{"id":"plug-59","roomId":"room-18","wall":"top","position":40,"isOnWall":true,"label":""},{"id":"plug-60","roomId":"room-19","wall":"right","position":30,"isOnWall":true,"label":""},{"id":"plug-61","roomId":"room-19","wall":"left","position":30,"isOnWall":true,"label":""},{"id":"plug-62","roomId":"room-15","wall":"top","position":50,"isOnWall":true,"label":""},{"id":"plug-63","roomId":"room-15","wall":"left","position":80,"isOnWall":true,"label":""}],"wellplugs":[]}],"nextId":64}', NULL);
|
|
|
|
|
INSERT INTO deployment_details (deployment_id, beneficiary_id, caretaker_id, owner_id, installer_id, devices, address_street, address_city, address_zip, address_state, address_country, wifis, lat, lng, gps_age, note, floor_plan, overlapps) VALUES (50, 66, 32, 32, 32, '["64B7088909FC", "64B7088909B8", "64B7088905BC", "64B70888FAD4", "901506CA3DA0"]', '18569 allendale avenue', 'saratoga', '95070', 'ca', 'united states', '{"CBX": "69696969"}', 37.267105, -121.99551, 0, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO deployment_details (deployment_id, beneficiary_id, caretaker_id, owner_id, installer_id, devices, address_street, address_city, address_zip, address_state, address_country, wifis, lat, lng, gps_age, note, floor_plan, overlapps) VALUES (63, 67, 32, 32, 32, '142B2F81A2DC', '111 My Street', 'San Jose', '95134', 'CA', 'USA', '', 0, 0, 0, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO deployment_details (deployment_id, beneficiary_id, caretaker_id, owner_id, installer_id, devices, address_street, address_city, address_zip, address_state, address_country, wifis, lat, lng, gps_age, note, floor_plan, overlapps) VALUES (66, 0, 0, 0, 0, '[]', '8 Munn Ave', 'Riverdale', '07457', 'NJ', 'USA', '[]', 0, 0, 0, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO deployment_details (deployment_id, beneficiary_id, caretaker_id, owner_id, installer_id, devices, address_street, address_city, address_zip, address_state, address_country, wifis, lat, lng, gps_age, note, floor_plan, overlapps) VALUES (67, 73, 73, 32, 73, '["142B2F81A4B0","10061C15C32C","142B2F81A124"]', 'Post Office Box 196', 'Southfield', '01259', 'MA', 'USA', '', 0, 0, 0, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO deployment_details (deployment_id, beneficiary_id, caretaker_id, owner_id, installer_id, devices, address_street, address_city, address_zip, address_state, address_country, wifis, lat, lng, gps_age, note, floor_plan, overlapps) VALUES (69, 70, 70, 70, 70, '', '', '', '', '', '', '', 0, 0, 0, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO deployment_details (deployment_id, beneficiary_id, caretaker_id, owner_id, installer_id, devices, address_street, address_city, address_zip, address_state, address_country, wifis, lat, lng, gps_age, note, floor_plan, overlapps) VALUES (68, 74, 74, 32, 74, '["10061C159B08","142B2F81A160"]', '', '', '', '', '', '["10061C159B08","142B2F81A160"]', 0, 0, 0, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO deployment_details (deployment_id, beneficiary_id, caretaker_id, owner_id, installer_id, devices, address_street, address_city, address_zip, address_state, address_country, wifis, lat, lng, gps_age, note, floor_plan, overlapps) VALUES (45, 59, 59, 59, 59, '["10061C15C258","901506CA4320"]', '', '', '', 'CA', 'USA', '', 0, 0, 0, NULL, NULL, NULL);
|
|
|
|
|
|
|
|
|
|
-- Devices data (455 rows)
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (510, '64B7088909FC', 215, '', 56, '', '["s28_max",14]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141942e+09, 'FFFFFFFFFFFF00FF00FF', '{"enabled_alarms": "000110101010", "armed_states": "001000000000", "stuck_minutes_warning": 420, "stuck_warning_method_0": "SMS", "stuck_minutes_alarm": 600, "stuck_alarm_method_1": "PHONE", "absent_minutes_warning": 20, "absent_warning_method_2": "SMS", "absent_minutes_alarm": "-546.9", "absent_alarm_method_3": "PHONE", "temperature_high_warning": "80", "temperature_high_warning_method_4": "SMS", "temperature_high_alarm": "90", "temperature_high_alarm_method_5": "PHONE", "temperature_low_warning": "60", "temperature_low_warning_method_6": "SMS", "temperature_low_alarm": "50", "temperature_low_alarm_method_7": "PHONE", "radar_alarm_method_8": "MSG", "pressure_threshold": "15.0", "pressure_alarm_method_9": "MSG", "light_threshold": "150.0", "light_alarm_method_10": "MSG", "smell_alarm_method_11": "EMAIL", "rearm_policy": "1H", "filter": "6"}', NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (720, '901506CA3AAC', 475, '', 56, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, '{"enabled_alarms": "011010101010", "armed_states": "011000000000", "stuck_minutes_warning": 420, "stuck_warning_method_0": "SMS", "stuck_minutes_alarm": "672.0", "stuck_alarm_method_1": "PHONE", "absent_minutes_warning": 20, "absent_warning_method_2": "SMS", "absent_minutes_alarm": "-724.3", "absent_alarm_method_3": "PHONE", "temperature_high_warning": "80", "temperature_high_warning_method_4": "SMS", "temperature_high_alarm": "82.5", "temperature_high_alarm_method_5": "PHONE", "temperature_low_warning": "60", "temperature_low_warning_method_6": "SMS", "temperature_low_alarm": "67.2", "temperature_low_alarm_method_7": "PHONE", "radar_alarm_method_8": "MSG", "pressure_threshold": "15.0", "pressure_alarm_method_9": "MSG", "light_threshold": "150.0", "light_alarm_method_10": "MSG", "smell_alarm_method_11": "EMAIL", "rearm_policy": "At midnight", "filter": "6"}', NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (525, '64B708890A00', 272, 'Michael"s', 56, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141926e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (770, '142B2F81A2CC', 524, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (771, '901506CA3A64', 525, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (780, '10061C15C358', 533, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (786, '142B2F81A12C', 538, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (772, '10061C15C304', 526, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (781, '142B2F81AA88', 534, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (718, '10061C15C3A0', 473, 'Small', 102, '', '["s2_max",24]', NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, '{"enabled_alarms": "000010101010", "armed_states": "000000000000", "stuck_minutes_warning": 420, "stuck_warning_method_0": "SMS", "stuck_minutes_alarm": "29.9", "stuck_alarm_method_1": "SMS", "absent_minutes_warning": 20, "absent_warning_method_2": "SMS", "absent_minutes_alarm": "-694.4", "absent_alarm_method_3": "SMS", "temperature_high_warning": "80", "temperature_high_warning_method_4": "SMS", "temperature_high_alarm": "90", "temperature_high_alarm_method_5": "EMAIL", "temperature_low_warning": "60", "temperature_low_warning_method_6": "SMS", "temperature_low_alarm": "68.8", "temperature_low_alarm_method_7": "EMAIL", "radar_alarm_method_8": "MSG", "pressure_threshold": "15.0", "pressure_alarm_method_9": "MSG", "light_threshold": "150.0", "light_alarm_method_10": "MSG", "smell_alarm_method_11": "EMAIL", "rearm_policy": "At midnight", "filter": "6"}', NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (684, '142B2F81A2DC', 447, '', 104, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, '{"enabled_alarms": "000001010101", "armed_states": "000000000000", "stuck_minutes_warning": 420, "stuck_warning_method_0": "SMS", "stuck_minutes_alarm": 600, "stuck_alarm_method_1": "PHONE", "absent_minutes_warning": 20, "absent_warning_method_2": "SMS", "absent_minutes_alarm": 30, "absent_alarm_method_3": "PHONE", "temperature_high_warning": "80", "temperature_high_warning_method_4": "SMS", "temperature_high_alarm": "90", "temperature_high_alarm_method_5": "PHONE", "temperature_low_warning": "60", "temperature_low_warning_method_6": "SMS", "temperature_low_alarm": "68.8", "temperature_low_alarm_method_7": "PHONE", "radar_alarm_method_8": "MSG", "pressure_threshold": "15.0", "pressure_alarm_method_9": "MSG", "light_threshold": "150.0", "light_alarm_method_10": "MSG", "smell_alarm_method_11": "EMAIL", "rearm_policy": "At midnight", "filter": "6"}', NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (663, '901506CA3C08', 431, '', 5, '', '["s5_max",50]', NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, '{"enabled_alarms": "000001010101", "armed_states": "000000010101", "stuck_minutes_warning": "74.2", "stuck_warning_method_0": "SMS", "stuck_minutes_alarm": 600, "stuck_alarm_method_1": "PHONE", "absent_minutes_warning": "-1420.3", "absent_warning_method_2": "SMS", "absent_minutes_alarm": 30, "absent_alarm_method_3": "PHONE", "temperature_high_warning": "80", "temperature_high_warning_method_4": "SMS", "temperature_high_alarm": "90", "temperature_high_alarm_method_5": "PHONE", "temperature_low_warning": "60", "temperature_low_warning_method_6": "SMS", "temperature_low_alarm": "68.8", "temperature_low_alarm_method_7": "PHONE", "radar_alarm_method_8": "MSG", "pressure_threshold": "15.0", "pressure_alarm_method_9": "MSG", "light_threshold": "150.0", "light_alarm_method_10": "MSG", "smell_alarm_method_11": "EMAIL", "rearm_policy": "At midnight", "filter": "6"}', NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (783, '142B2F81AA8C', 535, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (787, '142B2F819E78', 539, '', 78, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (521, '64B7088909B8', 218, '', 102, '', '["s3_max",18]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7223845e+09, 'FFFFFFFFFFFF00FF00FF', '{"enabled_alarms": "000111111010", "armed_states": "010000000000", "stuck_minutes_warning": 420, "stuck_warning_method_0": "SMS", "stuck_minutes_alarm": "-5.8", "stuck_alarm_method_1": "PHONE", "absent_minutes_warning": 20, "absent_warning_method_2": "SMS", "absent_minutes_alarm": "1.7", "absent_alarm_method_3": "PHONE", "temperature_high_warning": "78.0", "temperature_high_warning_method_4": "SMS", "temperature_high_alarm": "67.2", "temperature_high_alarm_method_5": "PHONE", "temperature_low_warning": "60", "temperature_low_warning_method_6": "SMS", "temperature_low_alarm": "50", "temperature_low_alarm_method_7": "PHONE", "radar_alarm_method_8": "MSG", "pressure_threshold": "15.0", "pressure_alarm_method_9": "MSG", "light_threshold": "150.0", "light_alarm_method_10": "MSG", "smell_alarm_method_11": "EMAIL", "rearm_policy": "At midnight", "filter": "6", "undefined": "47.5"}', NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (715, '901506CA3D04', 471, '', 103, '', '12', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, '{"enabled_alarms": "000001010101", "armed_states": "000000000000", "stuck_minutes_warning": "55.9", "stuck_warning_method_0": "SMS", "stuck_minutes_alarm": 600, "stuck_alarm_method_1": "PHONE", "absent_minutes_warning": "-816.6", "absent_warning_method_2": "SMS", "absent_minutes_alarm": 30, "absent_alarm_method_3": "PHONE", "temperature_high_warning": "80", "temperature_high_warning_method_4": "SMS", "temperature_high_alarm": "90", "temperature_high_alarm_method_5": "PHONE", "temperature_low_warning": "60", "temperature_low_warning_method_6": "SMS", "temperature_low_alarm": "68.8", "temperature_low_alarm_method_7": "PHONE", "radar_alarm_method_8": "MSG", "pressure_threshold": "15.0", "pressure_alarm_method_9": "MSG", "light_threshold": "150.0", "light_alarm_method_10": "MSG", "smell_alarm_method_11": "EMAIL", "rearm_policy": "At midnight", "filter": "6"}', NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (719, '10061C159AFC', 474, '', 104, '', '12', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (773, '10061C15C234', 527, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (784, '142B2F81A690', 536, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (788, '142B2F81AA68', 540, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (707, '142B2F81A058', 464, '', 56, '', '["s4_max",6]', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (798, '901506CA3C24', 549, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (496, '64B708890584', 201, '', 34, 'toaster', '["s3_max",10]', '3.0.33', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7223652e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (500, '64B708897018', 205, '', 5, '', '["s3_max",10]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7223817e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (513, '64B708890448', 219, '', 34, '', '["s3_max",12]', '3.0.32', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7225414e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (505, '64B708890A38', 210, '', 34, 'above toaster', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7223835e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (498, '64B708890B14', 203, '', 78, '', '["s4_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7223802e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (703, '10061C159AA0', 460, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (547, '64B7088901E4', 254, '', 78, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7222991e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (507, '64B708896C3C', 212, 'Stove', 34, '', '["s3_max",12]', '3.0.32', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7223181e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (639, '901506CA3CFC', 407, '', 102, '', '["s6_max",20]', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (768, '142B2F81A688', 522, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (698, '142B2F81A134', 455, 'Na katu', 6, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (785, '142B2F819F24', 537, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (544, '64B7088909E8', 251, '', 102, '', '["s5_max",10]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141942e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (568, '64B70888F8C0', 283, '', 34, '', '["s4_max",32]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7223619e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (529, '64B7088908A0', 276, '', 102, '', '["s5_max",10]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141926e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (656, '142B2F81A0F0', 424, '', 106, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (546, '64B708890734', 252, '', 56, '', '["s28_max",7]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141942e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (789, '142B2F819E18', 541, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (548, '64B70889074C', 255, '', 103, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7150355e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (792, '10061C15C21C', 544, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (664, '10061C15C364', 432, 'initial', -1, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (558, '64B708890210', 265, '', 106, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141926e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (527, '64B708890474', 279, 'Dog food area', 6, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141926e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (526, '64B70888F8BC', 275, '', 104, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7142825e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (716, '142B2F81AABC', 472, '', 34, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, '{"enabled_alarms": "011001010101", "armed_states": "011000000000", "stuck_minutes_warning": 420, "stuck_warning_method_0": "SMS", "stuck_minutes_alarm": 600, "stuck_alarm_method_1": "PHONE", "absent_minutes_warning": 20, "absent_warning_method_2": "SMS", "absent_minutes_alarm": 30, "absent_alarm_method_3": "PHONE", "temperature_high_warning": "80", "temperature_high_warning_method_4": "SMS", "temperature_high_alarm": "90", "temperature_high_alarm_method_5": "PHONE", "temperature_low_warning": "60", "temperature_low_warning_method_6": "SMS", "temperature_low_alarm": "68.8", "temperature_low_alarm_method_7": "PHONE", "radar_alarm_method_8": "MSG", "pressure_threshold": "15.0", "pressure_alarm_method_9": "SMS", "light_threshold": "150.0", "light_alarm_method_10": "SMS", "smell_alarm_method_11": "EMAIL", "rearm_policy": "At midnight", "filter": "6"}', NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (753, '142B2F81A284', 507, '', 34, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (552, '64B708890F50', 259, 'CTO', 5, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141926e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (570, '64B70888FA88', 288, '', 34, '', '["s2_max",10]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7223643e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (549, '64B70889032C', 256, 'Behind the toilet', 102, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7150355e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (566, '64B7088903B4', 285, 'FC', 56, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141926e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (577, '64B70889095C', 233, 'JR', 56, '', '["s3_max",12]', '3.0.32', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7143145e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (576, '64B7088908D0', 224, 'AG', 56, '', '["s3_max",12]', '3.0.32', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7143145e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (565, '64B70888FAD0', 287, 'Computer', 78, '', '["s4_max",26]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7223635e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (556, '64B708890470', 263, 'Smell', 8, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141926e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (567, '64B70888FAC8', 284, 'Armchairs', 78, '', '["s2_max",11.35]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141926e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (688, '142B2F819E28', 449, '', 5, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (750, '142B2F81A3D8', 504, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (644, '901506CA429C', 412, '', 56, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (643, '901506CA3CF8', 411, '', 5, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (651, '142B2F81A4B4', 419, 'above toaster', 34, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (662, '142B2F81AA6C', 430, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (734, '10061C15C33C', 488, 'initial', -1, '', '12', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (758, '10061C159A9C', 512, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (550, '64B708890248', 257, NULL, 0, NULL, '["s3_max",12]', '3.0.37', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7197069e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (553, '64B708897074', 260, NULL, 0, NULL, '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141926e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (742, '901506CA3BAC', 496, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (743, '142B2F81A14C', 497, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (769, '142B2F81AAD4', 523, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (532, '64B7088905BC', 237, '', 78, 'tree', '["s3_max",15]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7224549e+09, 'FFFFFFFFFFFF00FF00FF', '{"enabled_alarms": "000100000000", "armed_states": "000000000000", "stuck_minutes_warning": 420, "stuck_warning_method_0": "SMS", "stuck_minutes_alarm": 600, "stuck_alarm_method_1": "PHONE", "absent_minutes_warning": 20, "absent_warning_method_2": "SMS", "absent_minutes_alarm": 30, "absent_alarm_method_3": "PHONE", "temperature_high_warning": "85", "temperature_high_warning_method_4": "SMS", "temperature_high_alarm": "95", "temperature_high_alarm_method_5": "PHONE", "temperature_low_warning": "60", "temperature_low_warning_method_6": "SMS", "temperature_low_alarm": "50", "temperature_low_alarm_method_7": "PHONE", "radar_alarm_method_8": "MSG", "pressure_threshold": "15.0", "pressure_alarm_method_9": "MSG", "light_threshold": "150.0", "light_alarm_method_10": "MSG", "smell_alarm_method_11": "EMAIL", "rearm_policy": "1H", "filter": "6"}', NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (357, '64B7088902B8', 101, 'null', 56, '', '[5,4,3.6,3.3,3.3,3.3,4,30]', '3.0.30', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7220609e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (358, '308398C72E58', 102, '', 34, 'Fridge', '[5,5,3.5,3.5,3.5,3.25,3.5,30]', '3.0.30', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7221224e+09, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (359, '64B708896BD8', 103, '', 5, 'on desk', '[20,20,18,18,15,15,17,30] ', '3.0.30', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.717182e+09, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (360, '64B708890988', 104, 'null', 78, 'on desk', '[10,4.5,3.8,3.5,3.2,3.2,4,30]', '3.0.30', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7221244e+09, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (362, '64B708890298', 106, 'null', 102, '', '[6,5,5,4.5,4.2,4,4,30]', '3.0.30', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.722122e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (363, '4C75259783E0', 107, 'Malo ', 102, '', '[5,4.5,3.5,3.3,3.5,3.5,3.5,30]', '3.0.30', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7222885e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (386, '64B7088905C8', 130, 'null', 103, '', '[15,9,5.5,4.3,4.2,3.6,3.6,30]', '3.0.30', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7221199e+09, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (774, '901506CA42A8', 528, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (499, '64B708890288', 204, '', 105, '', '["s3_max",10]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7223805e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (497, '64B7088906D8', 202, '', 34, 'stove', '["s28_max",14]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141942e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (704, '142B2F81A5B0', 461, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (790, '10061C15C350', 542, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (695, '10061C1599BC', 453, '', 102, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (793, '10061C15C37C', 545, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (669, '10061C15C218', 437, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (700, '142B2F81A66C', 457, 'U prizemlju', 6, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (652, '326638316134', 420, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (699, '901506CA4098', 456, 'Mala na katu', 56, '', '["s3_max",5]', NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (748, '901506CA4700', 502, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (701, '142B2F81A2B4', 458, '', 34, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (761, '142B2F81A4B0', 515, '', 34, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (763, '142B2F81A124', 517, '', 102, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (660, '901506CA3CB8', 428, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (661, '142B2F81AA64', 429, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (571, '64B70888FA84', 291, NULL, 78, NULL, '["s2_max",20]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7222044e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (666, '142B2F81A290', 434, 'initial', -1, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (537, '64B7088907F8', 243, '', 56, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.2', '0.0, 0.0, 0.0', 10, 1.7141942e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (569, '64B70889043C', 282, '', 56, '', '["s28_max",8]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7142417e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (670, '142B2F81AAAC', 438, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (675, '10061C15C278', 441, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (551, '64B70888F6FC', 258, 'Dev L', 9, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141926e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (677, '10061C159A0C', 442, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (689, '142B2F81A2A4', 450, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (730, '10061C15C26C', 484, 'initial', -1, '', '12', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (724, '10061C1599AC', 478, 'initial', -1, '', '12', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (759, '142B2F81A67C', 513, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (517, '64B708890488', 222, 'Open space', 6, '', '["s3_max",12]', '3.0.32', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7156918e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (764, '10061C15C25C', 518, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (624, '64B708890958', 286, 'JC', 56, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (623, '64B708890860', 223, '', 104, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (626, '64B708890870', 228, '', 6, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (628, '64B708890EBC', 229, 'Patio', 34, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (318, '98CDACD07240', 37, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6857792e+09, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (319, '308398E05658', 30, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6493704e+09, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (594, '4267426B7477', 296, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (531, '64B7088909B0', 240, NULL, 78, NULL, '["s28_max",7]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141942e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (636, '10061C159A84', 404, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (775, '142B2F819E10', 529, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (640, '142B2F81A3E4', 408, '', 56, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, '{"enabled_alarms": "000000010101", "armed_states": "000000000000", "stuck_minutes_warning": 420, "stuck_warning_method_0": "SMS", "stuck_minutes_alarm": 600, "stuck_alarm_method_1": "PHONE", "absent_minutes_warning": 20, "absent_warning_method_2": "SMS", "absent_minutes_alarm": 30, "absent_alarm_method_3": "PHONE", "temperature_high_warning": "81.4", "temperature_high_warning_method_4": "PHONE", "temperature_high_alarm": "90", "temperature_high_alarm_method_5": "PHONE", "temperature_low_warning": "78.2", "temperature_low_warning_method_6": "PHONE", "temperature_low_alarm": "50", "temperature_low_alarm_method_7": "PHONE", "radar_alarm_method_8": "MSG", "pressure_threshold": "15.0", "pressure_alarm_method_9": "MSG", "light_threshold": "150.0", "light_alarm_method_10": "MSG", "smell_alarm_method_11": "EMAIL", "rearm_policy": "At midnight", "filter": "6"}', NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (645, '202020202022', 413, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (653, '10061C15C330', 421, '', 106, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (542, '64B70888FAA0', 248, '', 102, '', '["s4_max",50.0]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141942e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (563, '64B708890970', 270, '', 34, '', '["s5_max",15]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7222945e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (667, '142B2F81A4F8', 435, '', 34, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (791, '901506CA3BC8', 543, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (741, '142B2F81A128', 495, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (731, '142B2F819F74', 485, 'initial', -1, '', '12', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (710, '316331353961', 467, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (749, '10061C15C320', 503, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (737, '10061C15C378', 491, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (693, '10061C159AF0', 452, '', 34, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (751, '10061C159A6C', 505, 'Family', 78, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (744, '901506CA3DD0', 498, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (762, '10061C15C32C', 516, '', 56, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (697, '142B2F81A3BC', 454, 'Large', 10, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (728, '10061C159A10', 482, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (757, '142B2F81A160', 511, '', 102, '', '12', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (296, '5002919DF284', 51, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6857795e+09, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (297, '308398C717DC', 50, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.685817e+09, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (298, '308398E056AC', 5, 'Small Bathroom', 102, '', '["s3_max",12]', '3.0.28', '0.92', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.685817e+09, 'FF000000000000FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (299, '308398C7245C', 38, 'Eye Tech', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6493704e+09, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (300, '308398C722F0', 35, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6497181e+09, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (794, '10061C15C258', 546, '', 56, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (562, '64B708897428', 269, '', 5, '', '["s28_max",40.0]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7222056e+09, 'FFFFFFFFFFFF00FF00FF', '{"enabled_alarms":"000100000000","armed_states":"000000000000","stuck_minutes_warning":420,"stuck_warning_method_0":"SMS","stuck_minutes_alarm":600,"stuck_alarm_method_1":"PHONE","absent_minutes_warning":20,"absent_warning_method_2":"SMS","absent_minutes_alarm":30,"absent_alarm_method_3":"PHONE","temperature_high_warning":"85","temperature_high_warning_method_4":"SMS","temperature_high_alarm":"95","temperature_high_alarm_method_5":"PHONE","temperature_low_warning":"60","temperature_low_warning_method_6":"SMS","temperature_low_alarm":"50","temperature_low_alarm_method_7":"PHONE","radar_alarm_method_8":"MSG","pressure_alarm_method_9":"MSG","light_alarm_method_10":"MSG","smell_alarm_method_11":"EMAIL","rearm_policy":"At midnight","filter":"6"}', NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (533, '64B70888FAD4', 239, 'My', 5, '', '["s28_max",15]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141942e+09, 'FFFFFFFFFFFF00FF00FF', '{"enabled_alarms": "000000000000", "armed_states": "010100000000", "stuck_minutes_warning": 420, "stuck_warning_method_0": "SMS", "stuck_minutes_alarm": 600, "stuck_alarm_method_1": "PHONE", "absent_minutes_warning": 20, "absent_warning_method_2": "SMS", "absent_minutes_alarm": 30, "absent_alarm_method_3": "PHONE", "temperature_high_warning": "85", "temperature_high_warning_method_4": "SMS", "temperature_high_alarm": "95", "temperature_high_alarm_method_5": "PHONE", "temperature_low_warning": "60", "temperature_low_warning_method_6": "SMS", "temperature_low_alarm": "50", "temperature_low_alarm_method_7": "PHONE", "radar_alarm_method_8": "PHONE", "pressure_threshold": "15.0", "pressure_alarm_method_9": "MSG", "light_threshold": "150.0", "light_alarm_method_10": "MSG", "smell_alarm_method_11": "EMAIL", "rearm_policy": "At midnight", "filter": "6"}', NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (559, '64B70888FAB0', 266, 'Small', 102, '', '["s28_min",42]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141926e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (524, '64B708896BDC', 273, NULL, 34, NULL, '["s3_max",50]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141926e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (540, '64B70889087C', 246, '', 102, '', '["s28_max",20]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7224595e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (541, '64B708896FE4', 247, '', 56, '', '["s28_max",13]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7224604e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (560, '64B70888F6F0', 267, '', 104, '', '["s5_max",50]', '3.0.36', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7222039e+09, 'FFFFFFFFFFFF00FF00FF', '{"enabled_alarms": "000100000000", "armed_states": "000000000000", "stuck_minutes_warning": 420, "stuck_warning_method_0": "SMS", "stuck_minutes_alarm": 600, "stuck_alarm_method_1": "PHONE", "absent_minutes_warning": 20, "absent_warning_method_2": "SMS", "absent_minutes_alarm": 30, "absent_alarm_method_3": "PHONE", "temperature_high_warning": "85", "temperature_high_warning_method_4": "SMS", "temperature_high_alarm": "95", "temperature_high_alarm_method_5": "PHONE", "temperature_low_warning": "60", "temperature_low_warning_method_6": "SMS", "temperature_low_alarm": "50", "temperature_low_alarm_method_7": "PHONE", "radar_alarm_method_8": "PHONE", "pressure_alarm_method_9": "MSG", "light_alarm_method_10": "MSG", "smell_alarm_method_11": "EMAIL", "rearm_policy": "At midnight", "filter": "6"}', NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (705, '142B2F81A5AC', 462, 'Novi 462', 104, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (641, '142B2F81A2D4', 409, '', 78, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (754, '901506CA42A4', 508, 'Laundry Room', 200, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (637, '303663613363', 405, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (657, '142B2F81AA60', 425, 'initial', -1, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (795, '901506CA4320', 547, '', 102, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (725, '142B2F819F78', 479, 'initial', -1, '', '12', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (732, '142B2F81A434', 486, 'initial', -1, '', '12', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (747, '10061C1599B0', 501, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (711, '10061C159A30', 468, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (538, '64B70889036C', 244, '', 6, '', '["s28_max",11.7]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141942e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (515, '64B7088901D0', 234, '', 56, '', '["s2_max",13]', '3.0.32', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7143145e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (501, '64B708896F78', 206, '', 34, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.722382e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (561, '64B70889062C', 268, NULL, 103, 'table', '["s28_min",14]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7222048e+09, 'FFFFFFFFFFFF00FF00FF', '{"enabled_alarms":"000000000000","armed_states":"000000000000","stuck_minutes_warning":420,"stuck_warning_method_0":"SMS","stuck_minutes_alarm":600,"stuck_alarm_method_1":"PHONE","absent_minutes_warning":20,"absent_warning_method_2":"SMS","absent_minutes_alarm":30,"absent_alarm_method_3":"PHONE","temperature_high_warning":"85","temperature_high_warning_method_4":"SMS","temperature_high_alarm":"95","temperature_high_alarm_method_5":"PHONE","temperature_low_warning":"60","temperature_low_warning_method_6":"SMS","temperature_low_alarm":"50","temperature_low_alarm_method_7":"PHONE","radar_alarm_method_8":"MSG","pressure_threshold":"15.0","pressure_alarm_method_9":"MSG","light_threshold":"150.0","light_alarm_method_10":"MSG","smell_alarm_method_11":"EMAIL","rearm_policy":"At midnight","filter":"6"}', NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (539, '64B708890388', 245, '', 34, '', '["s28_min",8.2]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141942e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (678, '10061C15C310', 443, 'initial', -1, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (543, '64B70889030C', 249, '', 78, '', '["s6_max",6.5]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141942e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (572, '64B70888F860', 290, '', 56, '', '["s3_max",7.0]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7150355e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (706, '142B2F81AA9C', 463, '', 34, '', '["s2_max",8]', NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (638, '10061C15C398', 406, '', 34, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (691, '142B2F81A074', 451, '', 78, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (721, '901506CA3CE8', 476, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (738, '901506CA3CC4', 492, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (713, '142B2F81AAA8', 469, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (686, '142B2F81A034', 448, '', 78, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (646, '303663613362', 414, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (650, '142B2F819F1C', 418, 'kids', 102, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (672, '142B2F819F6C', 439, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (674, '901506CA4070', 440, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (564, '64B708890A68', 235, 'Yulic', 107, '', '["s2_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141942e+09, 'FFFFFFFFFFFF00FF00FF', '{"enabled_alarms": "000100000000", "armed_states": "000100000000", "stuck_minutes_warning": 420, "stuck_warning_method_0": "SMS", "stuck_minutes_alarm": 600, "stuck_alarm_method_1": "PHONE", "absent_minutes_warning": 20, "absent_warning_method_2": "SMS", "absent_minutes_alarm": 30, "absent_alarm_method_3": "PHONE", "temperature_high_warning": "85", "temperature_high_warning_method_4": "SMS", "temperature_high_alarm": "95", "temperature_high_alarm_method_5": "PHONE", "temperature_low_warning": "60", "temperature_low_warning_method_6": "SMS", "temperature_low_alarm": "50", "temperature_low_alarm_method_7": "PHONE", "radar_alarm_method_8": "MSG", "pressure_threshold": "15.0", "pressure_alarm_method_9": "MSG", "light_threshold": "150.0", "light_alarm_method_10": "MSG", "smell_alarm_method_11": "EMAIL", "rearm_policy": "At midnight", "filter": "6"}', NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (642, '142B2F819FA0', 410, '', 5, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (629, '64B7088904BC', 230, '', 5, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, '{"enabled_alarms": "011000110000", "armed_states": "011000000000", "stuck_minutes_warning": 420, "stuck_warning_method_0": "SMS", "stuck_minutes_alarm": 600, "stuck_alarm_method_1": "PHONE", "absent_minutes_warning": 20, "absent_warning_method_2": "SMS", "absent_minutes_alarm": 30, "absent_alarm_method_3": "PHONE", "temperature_high_warning": "80", "temperature_high_warning_method_4": "SMS", "temperature_high_alarm": "90", "temperature_high_alarm_method_5": "PHONE", "temperature_low_warning": "60", "temperature_low_warning_method_6": "SMS", "temperature_low_alarm": "50", "temperature_low_alarm_method_7": "PHONE", "radar_alarm_method_8": "MSG", "pressure_threshold": "45.6", "pressure_alarm_method_9": "MSG", "light_threshold": "385.2", "light_alarm_method_10": "MSG", "smell_alarm_method_11": "EMAIL", "rearm_policy": "At midnight", "filter": "6"}', NULL, 3);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (679, '10061C159A78', 444, '', 102, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 2);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (797, '142B2F81A4D4', 548, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (647, '303663613364', 415, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (649, '316331353962', 417, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (745, '142B2F81A2B8', 499, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (766, '10061C15C29C', 520, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (733, '142B2F819E34', 487, 'initial', -1, '', '12', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (658, '142B2F81A3D4', 426, 'Ernie', 56, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (760, '10061C159B0C', 514, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (654, '901506CA3D90', 422, '', 34, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (301, '308398C721E4', 13, '', 0, 'bed', '["s3_max",12]', '3.0.28', '0.92', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6857906e+09, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (302, '308398C72CDC', 3, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6858132e+09, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (776, '142B2F81A440', 530, 'Camila"s', 56, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (303, '308398C721F4', 9, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6858117e+09, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (304, '308398E05724', 17, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6430774e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (305, 'DE2F6273361B', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6432019e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (306, '308398E055C8', 41, 'ET-B4', 6, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6566698e+09, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (682, '10061C15C308', 446, '', 56, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (307, '308398C71C84', 39, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6493704e+09, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (308, '308398E055CC', 29, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6493704e+09, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (483, 'AB1173AB173C', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7024582e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (752, '142B2F819E0C', 506, 'Second floor', 6, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (755, '10061C159A20', 509, '', 109, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (702, '901506CA3B34', 459, 'Kod stepenica', 78, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (680, '142B2F81AA74', 445, '', 102, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (729, '10061C15C264', 483, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (665, '142B2F81A020', 433, 'office temp', 34, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 2);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (633, '901506CA3DA0', 403, 'new', 5, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '0.0, 0.0, 0.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 2);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (534, '64B708890F2C', 236, '', 34, '', '["s7_max",16]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7223852e+09, 'FFFFFFFFFFFF00FF00FF', '{"enabled_alarms": "000100100000", "armed_states": "000000000000", "stuck_minutes_warning": 420, "stuck_warning_method_0": "SMS", "stuck_minutes_alarm": 600, "stuck_alarm_method_1": "PHONE", "absent_minutes_warning": 20, "absent_warning_method_2": "SMS", "absent_minutes_alarm": 30, "absent_alarm_method_3": "PHONE", "temperature_high_warning": "80", "temperature_high_warning_method_4": "SMS", "temperature_high_alarm": "90", "temperature_high_alarm_method_5": "PHONE", "temperature_low_warning": "60", "temperature_low_warning_method_6": "SMS", "temperature_low_alarm": "50", "temperature_low_alarm_method_7": "PHONE", "radar_alarm_method_8": "MSG", "pressure_threshold": "15.0", "pressure_alarm_method_9": "MSG", "light_threshold": "150.0", "light_alarm_method_10": "MSG", "smell_alarm_method_11": "EMAIL", "rearm_policy": "At midnight", "filter": "6"}', NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (659, '142B2F81A2C0', 427, 'My room', 5, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (777, '142B2F81A684', 531, '', 5, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, '{"enabled_alarms":"000100000000","armed_states":"011100000000","stuck_minutes_warning":420,"stuck_warning_method_0":"SMS","stuck_minutes_alarm":600,"stuck_alarm_method_1":"PHONE","absent_minutes_warning":20,"absent_warning_method_2":"SMS","absent_minutes_alarm":30,"absent_alarm_method_3":"PHONE","temperature_high_warning":"80","temperature_high_warning_method_4":"SMS","temperature_high_alarm":"90","temperature_high_alarm_method_5":"PHONE","temperature_low_warning":"60","temperature_low_warning_method_6":"SMS","temperature_low_alarm":"50","temperature_low_alarm_method_7":"PHONE","radar_alarm_method_8":"SMS","pressure_threshold":"15.0","pressure_alarm_method_9":"MSG","light_threshold":"150.0","light_alarm_method_10":"MSG","smell_alarm_method_11":"EMAIL","rearm_policy":"At midnight","filter":"+80"}', NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (746, '10061C15C340', 500, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (535, '64B708890898', 238, 'small', 102, '', '["s4_max",20]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7224553e+09, 'FFFFFFFFFFFF00FF00FF', '{"enabled_alarms": "000100000000", "armed_states": "000000000000", "stuck_minutes_warning": 420, "stuck_warning_method_0": "SMS", "stuck_minutes_alarm": 600, "stuck_alarm_method_1": "PHONE", "absent_minutes_warning": 20, "absent_warning_method_2": "SMS", "absent_minutes_alarm": 30, "absent_alarm_method_3": "PHONE", "temperature_high_warning": "85", "temperature_high_warning_method_4": "SMS", "temperature_high_alarm": "95", "temperature_high_alarm_method_5": "PHONE", "temperature_low_warning": "60", "temperature_low_warning_method_6": "SMS", "temperature_low_alarm": "50", "temperature_low_alarm_method_7": "PHONE", "radar_alarm_method_8": "MSG", "pressure_threshold": "15.0", "pressure_alarm_method_9": "MSG", "light_threshold": "150.0", "light_alarm_method_10": "MSG", "smell_alarm_method_11": "EMAIL", "rearm_policy": "1H", "filter": "6"}', NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (765, '10061C159AB0', 519, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (630, '901506CA3C7C', 400, 'initial', -1, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (631, '142B2F81A104', 401, 'ok', -1, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (632, '901506CA3BDC', 402, 'ok', -1, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (726, '142B2F81AAD0', 480, 'initial', -1, '', '12', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (723, '901506CA3D44', 477, '', 34, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (648, '10061C159B2C', 416, 'ok', -1, '', '["s3_max",12]', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (756, '10061C159B08', 510, '', 56, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (655, '142B2F819E5C', 423, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (668, '10061C1599C0', 436, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (735, '10061C15C268', 489, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (740, '142B2F819F54', 494, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (767, '142B2F81A69C', 521, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (309, '308398DF2FFC', 43, 'ET-B4', 102, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6620952e+09, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (310, '308398C718E0', 20, 'Kitchen', 0, 'office', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7020273e+09, '00FFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (311, '308398C71738', 24, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6858118e+09, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (312, '308398DF3104', 36, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6434052e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (313, '308398C727AC', 45, 'ET-B4', 103, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6618881e+09, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (314, '308398E056A4', 26, '', 56, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6566701e+09, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (315, '308398DF2EDC', 23, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6493704e+09, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (316, '308398C724FC', 14, 'U kuhinji', 34, 'Stove', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6858176e+09, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (317, '308398C71B04', 42, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6858089e+09, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (484, 'CC70C4CD7937', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7024582e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (320, '308398DF3118', 1, 'Eye Tech', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6498899e+09, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (321, '308398DF2FC8', 2, 'ET-RB', 10, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6858084e+09, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (322, '308398DF2F54', 12, 'Office', 0, 'on desk', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6566049e+09, '00112233445566778899AA', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (323, '308398C72754', 15, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6493704e+09, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (324, '308398E05804', 22, 'Eye Tech', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6461878e+09, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (325, 'CA09FD8223DB', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6463067e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (326, '308398C71EA8', 40, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6493704e+09, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (327, '308398DF2EF4', 47, 'ET-B4', 56, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6590904e+09, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (328, '98CDACD074A0', 4, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6493649e+09, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (329, '308398DF2F0C', 31, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6493704e+09, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (330, '308398DF3174', 28, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6493704e+09, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (331, '308398C72040', 0, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6471732e+09, '00112233445566778899AA', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (332, '308398DF328C', 46, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.702009e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (333, '5A815C521647', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6471736e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (334, '308398C717A0', 27, 'Broken', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6479155e+09, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (335, '308398DF2FF0', 21, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6493704e+09, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (336, '308398C727D0', 19, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6562714e+09, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (337, '308398C721E0', 33, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6858107e+09, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (338, '308398E055C0', 44, 'ET-B4', 7, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6578212e+09, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (339, '308398C7293C', 25, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6493704e+09, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (340, '308398C71B60', 49, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.685785e+09, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (341, '308398E055E8', 16, '', 0, 'Bed', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.685804e+09, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (342, '308398C72140', 22, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6492842e+09, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (343, '3C26406B9566', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6480535e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (344, '308398E056BC', 32, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6562606e+09, 'FF000000000000FF00F1', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (345, '940E5EC56E2F', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6487845e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (346, '977C2C3D360A', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6487845e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (347, '9BFF446905F7', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6489526e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (348, '308398C71828', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6497288e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (349, '02C063642E4A', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.649932e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (350, '8BCD25F11DB9', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6523409e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (351, 'AD685A81D9BF', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6524109e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (352, '861C78F35F75', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6542043e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (353, '1AC8CBC1FE2A', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6627098e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (354, '48249F9A13B3', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6712915e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (355, 'D16D9B26CDB6', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.672209e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (356, '3F96C206BBF8', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.6860877e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (361, '308398C7259C', 105, '', 103, 'on desk', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7066204e+09, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (364, '64B708890F88', 108, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (365, '64B708896BE0', 109, '', 78, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7044941e+09, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (366, '64B70888FB58', 110, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7044941e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (368, '64B7088905D0', 112, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7044941e+09, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (369, '64B7088905E0', 113, '', 78, '', '["s3_max",12]', '3.0.30', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7227035e+09, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (370, '64B7088907C4', 114, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7046659e+09, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (371, '64B70888FB84', 115, 'Kitchen', 34, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141932e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (372, '64B7088904F0', 116, 'tree', 78, '', '["s3_max",12]', '3.0.38', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7232488e+09, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (373, '64B7088904F8', 117, '', 104, '', '["s3_max",12]', '3.0.25', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7227132e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (374, '64B708890F6C', 118, NULL, 0, NULL, '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141932e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (375, '64B70888FB80', 119, '', 103, '', '["s3_max",12]', '3.0.23', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7226982e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (376, 'D8A01D4C79F0', 120, '', 34, '', '["s3_max",12]', '3.0.25', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7227064e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (377, '64B7088904D0', 121, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.704494e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (597, '576C64435555', 299, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (378, '64B7088902A4', 122, 'Master Bathroom', 0, 'Master', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141932e+09, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (379, '308398C72C1C', 123, 'Living room', 0, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7253265e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (380, '64B7088905D8', 124, 'Office', 0, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141932e+09, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (381, '64B7088905DC', 125, 'Kitchen', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7034794e+09, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (383, '64B7088902AC', 127, 'Bathroom guest', 0, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141932e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (384, '64B708890F74', 128, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 1, 1.7028398e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (385, '64B7088904E8', 129, 'moj', 5, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -10', '0.0, 0.0, 0.0', 10, 1.7141932e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (387, '4C7525A8454C', 131, NULL, 0, NULL, '["s3_max",12]', '2.0.25', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.724057e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (388, '64B7088905FC', 132, NULL, 0, NULL, '["s3_max",12]', '2.0.25', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.723666e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (389, '308398C724E4', 133, NULL, 0, NULL, '["s3_max",12]', '2.0.25', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7200969e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (390, '64B708890F68', 134, NULL, 0, NULL, '["s3_max",12]', '2.0.25', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7254121e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (391, '64B7088904EC', 135, NULL, 0, NULL, '["s3_max",12]', '2.0.25', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7218607e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (392, '64B7088904DC', 136, '', 0, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141932e+09, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (393, '64B7088907AC', 137, '', 0, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141932e+09, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (394, '64B7088904F4', 138, '', 0, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141932e+09, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (395, '64B7088902A8', 139, '', 0, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141932e+09, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (396, '64B7088907D8', 140, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7066442e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (397, '64B70888FB50', 141, 'null', 5, 'on desk', '["s3_max",12]', '3.0.30', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7212613e+09, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (398, '64B708890294', 142, NULL, 105, NULL, '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7248389e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (399, '64B7088905E4', 143, 'Bedroom', 5, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7249745e+09, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (400, '64B708896BF0', 144, '', 106, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7250724e+09, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (401, '64B7088905E8', 145, '', 78, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7248388e+09, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (402, '64B7088904FC', 146, NULL, 34, NULL, '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7248675e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (403, '64B70888FB48', 147, '', 102, 'Small Bathroom', '["s3_max",12]', '3.0.30', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7227031e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (367, '64B708890F78', 111, 'Bedroom', 56, '', '["s3_max",12]', '3.0.25', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7227156e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (382, '64B708890618', 126, 'Bedroom', 0, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141932e+09, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (404, '64B70889029C', 148, '', 0, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141932e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (405, '64B7088907B4', 149, '', 34, 'Stove', '["s3_max",12]', '3.0.30', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7236069e+09, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (406, '64B70889028C', 150, '', 0, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 93, 1.7171822e+09, '6D6C6B6A696867666564', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (407, '64B708890290', 151, '', 102, '', '["s3_max",12]', '3.0.30', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7227014e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (408, '64B708890F84', 152, 'Na stolu', 0, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141932e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (409, '64B70888FB68', 153, '', 0, '', '["s3_max",12]', '3.0.28', '0.92', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7066442e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (411, '64B7088905F4', 155, 'Y', 5, 'Bed', '["s3_max",12]', '3.0.30', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7111716e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (412, '308398C71D24', 156, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7066442e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (413, '64B708896BD4', 157, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7066442e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (414, '64B70888FB60', 158, '', 0, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141932e+09, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (415, '64B708890500', 159, 'Mila', 56, '', '["s3_max",12]', '3.0.30', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7254063e+09, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (416, '64B70888FB54', 160, '', 0, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141932e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (417, '308398C7202C', 161, '', 0, '', '["s3_max",12]', '3.0.18', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7069016e+09, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (418, '64B708890F60', 162, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.705486e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (419, 'D8A01D4DA814', 163, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7054861e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (420, '64B7088907C0', 164, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.705486e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (421, '308398DF2F3C', 165, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.705486e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (422, '64B708896C1C', 166, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.705486e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (423, 'D8A01D692CA0', 167, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.705486e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (424, '64B708896BCC', 168, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.705486e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (425, '64B708890980', 169, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.705486e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (426, '64B70888FB7C', 170, '', 0, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141932e+09, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (427, '64B7088907B8', 171, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.705486e+09, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (709, '316331356333', 466, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (428, '64B7088907CC', 172, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.705486e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (429, '64B7088902CC', 173, '', 0, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141932e+09, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (430, 'D8A01D4DA4B8', 174, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.705486e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (431, '308398C72DD4', 175, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.705486e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (432, '308398C71E60', 176, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7026821e+09, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (433, '64B7088907BC', 177, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.705486e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (434, '64B7088904E0', 178, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7054861e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (435, '64B7088904D8', 179, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.705486e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (436, '64B7088905CC', 180, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.705486e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (437, '64B708890F64', 181, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7054861e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (438, 'D8A01D4C7BE4', 182, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.705486e+09, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (439, '24A1604E21D4', 183, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7062235e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (440, '64B7088907DC', 184, '', 0, '', '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7066533e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (441, '64B7088904E4', 185, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7062236e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (442, '64B708890F5C', 186, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7062235e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (443, '64B7088907C8', 187, '', 78, '', '["s3_max",12]', '3.0.30', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7206191e+09, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (444, '98CDACF0BCFC', 188, 'Master', 56, '', '["s3_max",12]', '3.0.30', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7254058e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (445, '64B7088907D4', 189, NULL, 0, NULL, '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141932e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (446, '64B7088905D4', 190, NULL, 0, NULL, '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 93, 1.7141932e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (447, '64B708890F80', 191, NULL, 0, NULL, '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 93, 1.7141932e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (448, '64B7088907D0', 192, '', 0, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141933e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (449, '64B7088902B0', 193, '', 0, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 38.662, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (450, '64B70888FB74', 194, '', 0, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 35.06, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (451, '64B70889097C', 195, NULL, 0, NULL, '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 33.479, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (452, '64B708896C18', 196, NULL, 0, NULL, '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 35.854, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (453, '308398C72EF8', 197, '', 0, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 33.328, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (454, '64B70888FB78', 198, 'Ernie', 56, NULL, '["s3_max",12]', '3.0.30', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7254058e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (455, '64B7088902A0', 199, '', 34, '', '["s3_max",12]', '3.0.30', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.725406e+09, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (456, '308398DF3100', 100, '', 0, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141932e+09, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (457, '16FC0BA69F9F', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7012054e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (458, '6B458FCE0E3C', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7017457e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (459, 'D0B328108FEC', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7018303e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (460, 'A3C8F90A1EE9', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7023443e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (461, 'CD0299DEC7CB', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.70235e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (462, 'AB287276CCDF', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7023599e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (463, 'EBAC5CCE3B32', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7023633e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (464, '722AF199E6CE', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7023635e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (465, '16915C4271DE', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7023649e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (466, '2A0FFCC4C580', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.702366e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (467, '46FAE07996FD', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7024108e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (468, '5F37455807FB', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7024118e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (469, '3F5ECD608CD3', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7024137e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (470, '329E0C0D0AC7', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7024164e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (471, '17CA7205A8BB', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7024284e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (472, '2978FC972A13', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7024321e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (473, 'AD520B68CC3F', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.702435e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (474, '6C19CEBE50B4', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7024462e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (475, 'A33DA79FB4ED', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7024466e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (476, 'DBF9D5E3D847', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7024468e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (477, '1EB4099F8C26', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.70245e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (478, 'DF26BB5708A8', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7024511e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (479, '3C265D816C75', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7024517e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (480, '34927A9415AB', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7024535e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (481, '3D05EE0811F9', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.702455e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (482, 'F9C881AA65E0', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7024562e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (485, '8D9B99C581FD', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7024612e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (486, 'BBDA40EA0A86', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7024623e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (487, '81BC783E4996', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7024689e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (488, 'FFCCAE8F0215', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.702471e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (489, '3BD19859E2E0', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7024714e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (490, 'CCF8FB26533B', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.70248e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (491, '0E1EBDE28BA8', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7024858e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (492, 'AF036F22BCB7', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.702489e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (493, '205D6834E4E8', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7027873e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (494, 'B69C2BB08639', 0, NULL, 0, NULL, '["s3_max",12]', '3.0.28', '', 0, 0, '0.0, 0.0, -16', '0.0, 0.0, 0.0', 10, 1.7027875e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (495, '64B708890524', 1, NULL, 0, NULL, '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7131397e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (502, '64B7088904B0', 207, NULL, 0, NULL, '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7223823e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (503, '64B7088976BC', 208, '', 0, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141942e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (504, '64B708890874', 209, '', 0, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.722383e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (506, '64B7088901E8', 211, NULL, 34, NULL, '["s3_max",12]', '3.0.32', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7223188e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (508, '64B708890800', 213, NULL, 56, NULL, '["s3_max",12]', '3.0.32', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7224943e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (509, '64B70889761C', 214, NULL, 0, NULL, '["s3_max",12]', '3.0.32', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7137996e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (511, '64B708896E90', 216, 'master', 104, NULL, '["s3_max",12]', '3.0.32', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7225524e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (512, '64B70889739C', 217, NULL, 5, NULL, '["s3_max",12]', '3.0.32', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7224157e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (514, '64B708890888', 294, '', 0, '', '["s3_max",12]', '3.0.36', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7191997e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (516, '8FAB8CBDAA5F', 0, NULL, 0, NULL, '["s3_max",12]', NULL, '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7135027e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (518, '64B708890F04', 220, NULL, 0, NULL, '["s3_max",12]', '3.0.32', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7137996e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (519, '64B70889046C', 231, NULL, 0, NULL, '["s3_max",12]', '3.0.32', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7137996e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (520, '64B708890954', 221, NULL, 0, NULL, '["s3_max",12]', '3.0.32', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7138002e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (522, '64B708890614', 274, NULL, 0, NULL, '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141926e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (523, '64B70889050C', 278, NULL, 0, NULL, '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141926e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (528, '64B708890E54', 271, '', 0, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141926e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (536, '64B7088908C0', 241, '', 0, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141942e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (545, '64B7088976A4', 253, '', 0, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7222985e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (727, '10061C159AF4', 481, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (554, '64B708897050', 261, NULL, 0, NULL, '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141926e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (555, '64B7088909C4', 262, NULL, 0, NULL, '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141926e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (557, '64B708890A4C', 264, NULL, 0, NULL, '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7144553e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (573, '64B7088976A0', 293, NULL, 0, NULL, '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7142528e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (574, '64B708890414', 292, NULL, 0, NULL, '["s3_max",12]', '3.0.32', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141926e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (708, '901506CA3A98', 465, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (575, '64B708890AE0', 232, NULL, 107, NULL, '["s3_max",12]', '3.0.32', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7143145e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (578, '7D57DEE3BC9F', 0, NULL, 0, NULL, '["s3_max",12]', NULL, '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7158044e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (579, 'AB200896C218', 0, NULL, 0, NULL, '["s3_max",12]', NULL, '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7150326e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (580, 'DE1D5CD557A3', 0, NULL, 0, NULL, '["s3_max",12]', NULL, '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7174244e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (581, '5451F084ECA9', 0, NULL, 0, NULL, '["s3_max",12]', NULL, '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.718573e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (582, '0C09228FE30E', 0, NULL, 0, NULL, '["s3_max",12]', NULL, '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7203707e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (583, '47558F645D1D', 0, NULL, 0, NULL, '["s3_max",12]', NULL, '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7188237e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (584, '4DBBC694C838', 0, NULL, 0, NULL, '["s3_max",12]', NULL, '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7199578e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (585, '6EFE7FBFCE51', 0, NULL, 0, NULL, '["s3_max",12]', NULL, '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7191337e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (586, '9AC12C2FF57B', 0, NULL, 0, NULL, '["s3_max",12]', NULL, '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7197527e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (587, 'F823C19B3A33', 0, NULL, 0, NULL, '["s3_max",12]', NULL, '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7209702e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (588, 'F958F64B9493', 0, NULL, 0, NULL, '["s3_max",12]', NULL, '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7192576e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (589, 'FC9107B47036', 0, NULL, 0, NULL, '["s3_max",12]', NULL, '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7201042e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (590, '3C662CA26D6F', 0, NULL, 0, NULL, '["s3_max",12]', NULL, '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7214986e+09, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (736, '142B2F81A268', 490, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (530, '64B7088908BC', 280, '', 78, '', '["s3_max",12]', '3.0.34', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7141926e+09, 'FFFFFFFFFFFF00FF00FF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (591, '64B708890784', 295, NULL, 0, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, NULL, 'FFFFFFFFFFFFFFFFFFFF', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (410, '64B708890F70', 154, '', 56, 'bed', '["s3_max",12]', '3.0.30', '', 0, 0, '0.0, 0.0, -16.0', '0.0, 0.0, 0.0', 10, 1.7227034e+09, 'FEFEFEFEFEFEFEFEFEFE', NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (595, '4251426B7477', 297, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (596, '643268435A30', 298, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (739, '142B2F81A450', 493, '', NULL, NULL, '["s3_max",12]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (714, '142B2F81A5B4', 470, '', 78, '', '["s3_max",10]', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, '{"enabled_alarms": "011010101010", "armed_states": "011000000000", "stuck_minutes_warning": 420, "stuck_warning_method_0": "SMS", "stuck_minutes_alarm": "147.9", "stuck_alarm_method_1": "MSG", "absent_minutes_warning": 20, "absent_warning_method_2": "SMS", "absent_minutes_alarm": "-849.4", "absent_alarm_method_3": "MSG", "temperature_high_warning": "80", "temperature_high_warning_method_4": "SMS", "temperature_high_alarm": "90", "temperature_high_alarm_method_5": "EMAIL", "temperature_low_warning": "60", "temperature_low_warning_method_6": "SMS", "temperature_low_alarm": "68.8", "temperature_low_alarm_method_7": "EMAIL", "radar_alarm_method_8": "MSG", "pressure_threshold": "15.0", "pressure_alarm_method_9": "MSG", "light_threshold": "150.0", "light_alarm_method_10": "MSG", "smell_alarm_method_11": "EMAIL", "rearm_policy": "At midnight", "filter": "6"}', NULL, 1);
|
|
|
|
|
INSERT INTO devices (device_id, device_mac, well_id, description, location, close_to, radar_threshold, fw_version, hw_version, ble_scan_period, ble_scan_duration, temperature_calib, humidity_calib, reporting_period_s, reboot_time, led_schema, alert_details, other, group_id) VALUES (778, '901506CA3E88', 532, 'initial', -1, '', '50', NULL, NULL, NULL, NULL, '0.0, 0.0, -10.0', '0.0, 0.0, 0.0', NULL, NULL, NULL, NULL, NULL, 1);
|
|
|
|
|
|