Enter the era of the smart home with Domotics
Imagine adjusting the lighting, temperature, and even the music ambiance with just a gesture or voice, while optimizing your energy consumption. Secure your home with advanced surveillance and alarm systems that can be controlled remotely.
Our intelligent systems offer you total, intuitive control over every aspect of your home. Home automation not only makes your life simpler but also increases your comfort and security, while also providing significant added value to your property. Embrace the future with our customizable and scalable solutions, and transform your home into a truly intelligent cocoon.

Imagine
A home that acts with you, at the right time
On your departure
With a single button, all the lights go out, your audio-visual devices go to sleep, the blinds close, the heating goes into economy mode, and the alarm goes off. Your garage and gate open, then close behind you.
At a distance
You control your installation with the tips of your fingers. You are alerted to the arrival or departure of someone, check your cameras, see the delivery person who rings the doorbell, open the door for a guest, simulate a presence, or restrict certain access.
When you return
The doors and shutters open, the lights come on, the heating is at a good temperature, and your favorite music accompanies you. The possibilities are almost limitless; the comfort and savings, however, are very real.
With ActivHome
Give your home 5 meanings
Your home listens to you, understands you, and responds to your requests.
Your home plays your music in all rooms, but it can also talk to you and warn you if a window remains open or if a water leak is detected.
With just a touch, you can launch complete scenarios so that your entire home adapts to your mood and activity.
Your installation detects smoke and certain gases, and can also monitor the air quality in the room.
Your installation detects the presence of intruders, informs you and allows you to monitor your home using your cameras.
Why choose ActivHome?
A solution designed for your home, not the other way around
An interface that suits you
We do not impose a generic application on you. Each interface can be designed to suit your specific needs, allowing you to visually reproduce your home, rooms, and equipment. You can control your home in a natural way, from an interface designed for you.
Free and multi-protocol
Your installation is not locked into the ecosystem of a single manufacturer. ActivHome enables different equipment and technologies to communicate so that the most relevant solution can be chosen for each use.
Evolutionary and budget-controlled
Your installation can be sized according to your priorities and evolve gradually. You invest where it brings you real value, without having to accomplish everything at once.
Customized intelligence
ActivHome doesn’t just connect your devices. We create automations and scenarios tailored to your lifestyle so that your home coordinates its equipment and truly simplifies your daily life.
A self-sufficient house
The essential functions of your home are managed locally. Lighting, heating, automation, and scenes continue to operate at home without relying on a cloud service. Remote connection occurs when you want to access your installation from outside.
Valuation of the property
A consistent, integrated, and sustainable installation improves the comfort and appearance of your home, while also constituting a real investment in its value.
What if your home really suited you?
Let's talk about your project and imagine a simple, reliable solution that suits your daily routine.
document.addEventListener('DOMContentLoaded', function(){
const counters = document.querySelectorAll('.ah-counter-value');
if(!counters.length) return;
function animateCounter(counter){
if(counter.dataset.animated === 'true') return;
counter.dataset.animated = 'true';
const target = parseInt(counter.dataset.target, 10);
const suffix = counter.dataset.suffix || '';
const duration = 1400;
const startTime = performance.now();
function update(currentTime){
const elapsed = currentTime - startTime;
const progress = Math.min(elapsed / duration, 1);
const eased = 1 - Math.pow(1 - progress, 3);
const value = Math.round(target * eased);
counter.textContent = value + suffix;
if(progress < 1){ requestAnimationFrame(update); }else{ counter.textContent = target + suffix; } } requestAnimationFrame(update); } if('IntersectionObserver' in window){ const observer = new IntersectionObserver(function(entries){ entries.forEach(function(entry){ if(entry.isIntersecting){ const values = entry.target.querySelectorAll('.ah-counter-value'); values.forEach(function(counter){ animateCounter(counter); }); observer.unobserve(entry.target); } }); },{ threshold:0.35 }); const counterBlock = document.querySelector('.ah-counters'); if(counterBlock){ observer.observe(counterBlock); } }else{ counters.forEach(function(counter){ animateCounter(counter); }); } });