Hub serves large areas lacking GSM connectivity. It analyzes videos and photos from LoRa Node cameras using edge AI, and sends high quality detection videos and photos to relevant units via satellite. It can connect to multiple cameras, aiming to provide surveillance over large areas without GSM communication.
Hub is a revolution in surveillance technology. Engineered to work with multiple cameras, it fetches and analyzes detection images/videos using cutting-edge AI at the source. This streamlined approach ensures only crucial detections are transmitted via GSM/Satellite to the relevant units.
Go Beyond Ordinary
Experience top-tier surveillance and data delivery with Hub’s standout features.
Data Transmission
Satellite (Iridium) / GSM
Node Connection
LoRa
Weight
3.5 kg
Dimensions
205x450x120 mm
Power Supply
External
Operation Conditions
-20 +50 C with IP67
Are you interested?
/* ============================================================= */
/* Custom CSS for Gallery / Brochure Columns */
/* ============================================================= */
/* Styles for the un-hovered column */
.my-gallery-column {
min-height: 400px !important; /* Adjust COLUMN HEIGHT here (e.g., 350px, 450px) */
display: flex; /* Makes the column a flex container */
flex-direction: column; /* Stacks content vertically */
justify-content: center; /* Centers content vertically within the column */
align-items: center; /* Centers content horizontally within the column */
padding: 15px; /* Add some internal padding to all sides of the column content */
position: relative; /* CRITICAL: Enables z-index for stacking context */
overflow: hidden; /* CRITICAL: Clips content that scales visually outside its bounds */
transform: scale(1); /* Initial state: no scaling */
transition: transform 0.3s ease-out, box-shadow 0.3s ease-out; /* Smooth animation for scaling and shadow */
cursor: pointer; /* Indicates the element is clickable */
}
/* Styles applied when the mouse hovers over the column */
.my-gallery-column:hover {
transform: scale(1.02); /* Adjust HOVER SCALE here (e.g., 1.01 to 1.03). */
/* Smaller values help prevent overlap, especially if columns are close. */
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4); /* Adds a stronger shadow on hover */
z-index: 10; /* Brings the hovered column to the front layer, preventing visual overlap */
}
/* Ensures any widgets inside the column also transition smoothly with the column */
.my-gallery-column .elementor-widget-container {
transition: transform 0.3s ease-out;
}
/* Optional: Slight vertical adjustment of heading on hover for more dynamism */
.my-gallery-column:hover .elementor-widget-heading {
transform: translateY(-5px); /* Moves heading up slightly on hover */
}