diff --git a/blog/2023-10-30-gladys-4-30-alarm-mode.md b/blog/2023-10-30-gladys-4-30-alarm-mode.md new file mode 100644 index 00000000..c7478091 --- /dev/null +++ b/blog/2023-10-30-gladys-4-30-alarm-mode.md @@ -0,0 +1,119 @@ +--- +title: Gladys gets a full alarm! +description: Security is the basis of home automation. Today, Gladys includes a complete alarm to help you manage your home's security. +author: Pierre-Gilles Leymarie +author_title: Founder of Gladys Assistant +author_url: https://twitter.com/pierregillesl +author_image_url: /img/pierre-gilles.jpg +image: /img/presentation/gladys-assistant-4-30-en.jpg +slug: gladys-4-30-alarm-mode +--- + +Hi everyone! + +Gladys Assistant 4.30 has just been released, and it's a hell of a version!!! 🥳 + +The main feature is the complete management of an Alarm mode that allows you to set up a complete home security system. + +![Gladys iPad Alarm Mockup](../static/img/articles/en/gladys-4-30/alarm_ipad_mockup_en.png) + +You've got to admit, it does make you want to 😎 + +## An alarm in Gladys + +Gladys can now replace a complete alarm system by managing the various states of any good alarm system: + + + +![Gladys dashboard alarm](../static/img/articles/en/gladys-4-30/alarm-dashboard.jpg) + +If you'd like to set up an alarm with Gladys, I've written [a complete tutorial](/docs/dashboard/alarm/) on the subject! + +## Node-RED integration + +It was already possible to interface Node-RED with Gladys (with the [MQTT integration](/docs/integrations/mqtt)), but this required some knowledge as you had to launch Node-RED yourself. + +Lokkye has worked on a native integration so that anyone can launch a Node-RED instance alongside Gladys with a single click! + +From now on, just go to the "Node-RED" integration and click on "Activate" to launch a Node-RED container: + +![Node-RED Gladys integration](../static/img/articles/en/gladys-4-30/node-red-integration.png) + +## Tuya: Power consumption management + +Tuya integration now supports connected sockets that report electricity consumption data. + +Thanks to Lokkye for the development 🙏 + +## Launch a scene from chat + +This was already possible with the ChatGPT integration, but this command has just been added to the Gladys "local" chat model. You can now ask Gladys to launch a scene in the chat: + +![Launch chat scene](../static/img/articles/en/gladys-4-30/cinema-scene.png) + +Thanks to Lokkye for the development 🙏 + +## Launch a scene with MQTT + +You can now launch a scene using MQTT by posting a message on the topic: + +``` +gladys/master/scene/SCENE_SELECTOR/start +``` + +By replacing `SCENE_SELECTOR` with the scene selector, which can be found in the scene edition URL. + +For example, for the scene `http://192.168.1.10/dashboard/scene/cinema`, you'll need to send a message to the topic: + +``` +gladys/master/scene/cinema/start +``` + +Thanks Lokkye for the development 🙏 + +## Launch a scene when Gladys starts up + +Want to receive a message when Gladys restarts? Perform an operation every time Gladys starts up? + +You can now launch a scene when Gladys starts up: + +![Scene when Gladys starts](../static/img/articles/en/gladys-4-30/gladys-start-trigger.png) + +Thanks Lokkye for the development 🙏 + +## Zigbee2mqtt: Interface enhancement + +Devices already added will no longer be displayed by default in the "Zigbee network discovery" page: + +![Zigbee2mqtt hide devices already added](../static/img/articles/en/gladys-4-30/zigbee2mqtt-hide-already-added-devices.png) + +And the Zigbee2mqtt URL is now displayed on the configuration page! + +**Bug correction**: When changing the USB key port, Gladys restarts the Zigbee2mqtt container with the correct volume. + +Thanks to AlexTrovato and Cicoub13 for these improvements 🙏 + +## Homekit: Humidity and leak sensors management + +From now on, your leak and humidity sensors will be put back into Homekit! + +Thanks bertrandda for the development 🙏 + +The complete CHANGELOG is available [here](https://github.com/GladysAssistant/Gladys/releases/tag/v4.30.0). + +## How to upgrade? + +If you installed Gladys with the official Raspberry Pi OS image, your instance will update **automatically** in the coming hours. It can take up to 24 hours, don't panic. + +If you installed Gladys with Docker, make sure you are using Watchtower. See the [documentation](/docs/installation/docker#auto-upgrade-gladys-with-watchtower). + +With Watchtower, Gladys will update automatically. + +## Support us + +If you want to support us, there are many ways: + +- Answer posts on the forum, give your feedback. +- Help us improve the documentation. +- Develop new features/integrations on Gladys, we are 100% open-source. +- Subscribe to [Gladys Plus](/plus), at -40% right now!! diff --git a/docs/api/3_mqtt_api.md b/docs/api/3_mqtt_api.md index 2900b805..3bb53671 100644 --- a/docs/api/3_mqtt_api.md +++ b/docs/api/3_mqtt_api.md @@ -8,7 +8,7 @@ If you have configured a MQTT Broker with your Gladys installation, you will hav Here are all the MQTT topics available, each one with an example message to send: -#### Push a decimal device state +### Push a decimal device state Say you have a temperature sensor sending data to Gladys, you'll have to send it's temperature values to: @@ -17,7 +17,7 @@ Topic: gladys/master/device/:device_external_id/feature/:device_feature_external Body: 22.2 ``` -#### Push a text device state +### Push a text device state If you want, you can send text to Gladys to display it on the dashboard! @@ -30,7 +30,7 @@ Topic: gladys/master/device/:device_external_id/feature/:device_feature_external Body: Hello Gladys! ``` -#### Push a state to a device +### Push a state to a device Say you have a MQTT light, and you want it to be controlled in Gladys. @@ -55,3 +55,19 @@ Or ``` Meaning "The light needs to be turned off". + +### Launch a scene with MQTT + +You can now launch a scene using MQTT by posting a message on the topic: + +``` +gladys/master/scene/SCENE_SELECTOR/start +``` + +By replacing `SCENE_SELECTOR` with the scene selector, which can be found in the scene edition URL. + +For example, for the scene `http://192.168.1.10/dashboard/scene/cinema`, you'll need to send a message to the topic: + +``` +gladys/master/scene/cinema/start +``` diff --git a/docs/dashboard/alarm.md b/docs/dashboard/alarm.md new file mode 100644 index 00000000..377f2eb7 --- /dev/null +++ b/docs/dashboard/alarm.md @@ -0,0 +1,91 @@ +--- +id: alarm +title: How to set up your own alarm system with Gladys? +sidebar_label: Alarm +--- + +In Gladys, you can configure a real alarm system. + +## Configure dashboard + +On the dashboard, you can add an "Alarm" widget: + +![Dashboard alarm](../../static/img/docs/en/dashboard/alarm/alarm-dashboard.jpg) + +The alarm in Gladys has 4 modes: + +- **Armed**: The house is armed. Useful when you're away from home. +- **Disarmed**: The house is disarmed, the alarm is not active. +- **Partial arming**: This mode is useful for "night mode" or "nap mode". You're at home and want to monitor only the outside of the house, but not the inside, so you can continue moving around. +- **Panic mode**: An intruder is in the house and you want to trigger the alarm, perhaps sending an automatic message to a loved one? + +Now that you've understood the different modes, it's time to set up scenes to implement your alarm strategy. + +## Set arming delay and alarm code + +There are 2 parameters to set in the house parameters ("Parameters" -> "Houses") + +![Alarm house settings](../../static/img/docs/en/dashboard/alarm/alarm-house-settings.jpg) + +- **Alarm code**: If you use "tablet mode", Gladys will display a numeric keypad on these tablets when the alarm is armed. The code defined here will be used to deactivate the alarm. We'll talk about this tablet mode later in this tutorial. +- **Delay before arming**: If you want to leave a delay before the alarm is armed (between 5 seconds and 1 minute), you can set it here. This allows you to leave the house before the alarm is activated. + +## Setting up scenes + +Now we need to tell Gladys what the alarm mode will do. + +The first scene to create is one that will be triggered when the alarm is armed. + +For example, you can send yourself a Telegram message when the alarm is arming, or make a sound signal in the house, make the lights flash - anything is possible! + +![Alarm arming...](../../static/img/docs/en/dashboard/alarm/alarm-arming.jpg) + +Next, the most important scenario: what to do in the event of an intrusion? + +You can create a scene with several triggers: + +- "When motion is detected in the living room" +- "When motion is detected in the kitchen". +- "When the front door is opened". + +![Scene motion alarm](../../static/img/docs/en/dashboard/alarm/alarm-scene-motion.jpg) + +Then add a condition "AND that the alarm is in armed mode" : + +![Alarm scene condition](../../static/img/docs/en/dashboard/alarm/alarm-condition.jpg) + +If this condition is met, the scene will continue and you can then send yourself a Telegram message, send yourself a camera image via Telegram, trigger an audible alarm in the house, etc... + +If someone breaks into your home, they may try to unlock Gladys via your wall-mounted tablets. + +They will be able to test 3 codes before the keypad locks for 5 minutes, and after 3 failed codes, this scene trigger will be called: + +![Alarm bad scene code](../../static/img/docs/en/dashboard/alarm/wrong-alarm-code.jpg) + +You can create a scene on this trigger that will warn you by message. + +## Tablet mode + +If you have a tablet on the wall at home, you can declare it to Gladys via the "Tablet mode" button: + +![Tablet mode](../../static/img/docs/en/dashboard/alarm/alarm-tablet-mode-button.jpg) + +When you click on this button, you'll see a form prompting you to enter the house in which this tablet is located. + +Gladys needs this information to know when to "lock" the tablet: + +![Tablet mode configuration](../../static/img/docs/en/dashboard/alarm/alarm-tablet-mode-config.jpg) + +If you want your tablet to be full-screen (and the rest), you can add a parameter to the URL: `?fullscreen=force`. + +This "forced fullscreen" has nothing to do with the tablet mode; both are entirely independent. + +When the alarm is armed, Gladys will automatically fetch all the tablets in the house, and lock them. + +These tablets will display a numeric keypad that will enable you to unlock the alarm: + +![Tablet mode numeric code](../../static/img/docs/en/dashboard/alarm/alarm-tablet-mode-locked.jpg) + +This keyboard is an alternative to physical keyboards, but you can also use a real physical Zigbee keyboard and create a scene that disarms the alarm when this keyboard is used. + +You can also dispense with these keypads altogether and disarm the alarm via your phone's "Alarm" widget. diff --git a/i18n/fr/code.json b/i18n/fr/code.json index 2f8d79cb..f67c798a 100644 --- a/i18n/fr/code.json +++ b/i18n/fr/code.json @@ -547,7 +547,7 @@ "description": "Gladys Plus suscribe button discount" }, "gladysPlusPage.subscribe": { - "message": "A l'occasion du lancement de l'intégration Tuya, -40% sur le premier paiement ( annuel ou mensuel ) avec le code TUYA2023 !", + "message": "A l'occasion du lancement de la fonctionnalité alarme, -40% sur le premier paiement annuel avec le code ALARM2023 !", "description": "Gladys Plus suscribe button discount" }, "gladysPlusPage.unsuscribeAtAnytime": { diff --git a/i18n/fr/docusaurus-plugin-content-blog/2023-10-09-gladys-4-29.md b/i18n/fr/docusaurus-plugin-content-blog/2023-10-09-gladys-4-29.md index 44246363..d63a5c1e 100644 --- a/i18n/fr/docusaurus-plugin-content-blog/2023-10-09-gladys-4-29.md +++ b/i18n/fr/docusaurus-plugin-content-blog/2023-10-09-gladys-4-29.md @@ -23,6 +23,8 @@ Merci à @Lokkye pour le développement 🙌 ### Mode plein écran pour les tablettes Gladys + + Si vous utilisez Gladys sur une tablette tactile quelque part dans votre maison, il est probable que vous vouliez afficher en plein écran le tableau de bord de Gladys, sans avoir la possibilité de naviguer hors de cet écran. C'est désormais possible grâce à un paramètre à rajouter dans L'URL : diff --git a/i18n/fr/docusaurus-plugin-content-blog/2023-10-30-gladys-4-30-alarm-mode.md b/i18n/fr/docusaurus-plugin-content-blog/2023-10-30-gladys-4-30-alarm-mode.md new file mode 100644 index 00000000..a13f812a --- /dev/null +++ b/i18n/fr/docusaurus-plugin-content-blog/2023-10-30-gladys-4-30-alarm-mode.md @@ -0,0 +1,125 @@ +--- +title: Une alarme complète débarque dans Gladys ! +description: La sécurité, c'est la base de la domotique. Aujourd'hui, une alarme complète débarque dans Gladys pour vous permettre de gérer la sécurité de votre maison. +author: Pierre-Gilles Leymarie +author_title: Fondateur de Gladys Assistant +author_url: https://twitter.com/pierregillesl +author_image_url: /fr/img/pierre-gilles.jpg +image: /img/presentation/gladys-assistant-4-30-fr.jpg +slug: gladys-4-30-alarm-mode +--- + +Salut à tous ! + +Gladys Assistant 4.30 vient de sortir, et c'est une sacré version !! 🥳 + +La principale fonctionnalité, c'est la gestion complète d'un mode Alarme qui vous permet de mettre en place un système de sécurité complet à la maison. + +![Mode Alarme Gladys iPad Mockup](../../../static/img/articles/fr/gladys-4-30/alarm_ipad_mockup_fr.png) + +Avouez que ça donne envie 😎 + +**Promotion FLASH**: A l'occasion de ce lancement, j'offre un [capteur d'ouverture de porte/fenêtre Zigbee](https://www.domadoo.fr/fr/peripheriques/5320-sonoff-capteur-d-ouverture-de-portefenetre-zigbee-30-snzb-04-6920075776126.html?domid=17) à tous les nouveaux inscrits sur le plan annuel à [Gladys Plus](/fr/plus/) !! (En plus des -40% !!). Offre réservée aux résidents de l'union-européenne ⚠️ + +## Une alarme dans Gladys + +Désormais, Gladys peut remplacer un système d'alarme complet en gérant les différents états de tout bon système d'alarme : + + + +![Alarme tableau de bord Gladys](../../../static/img/articles/fr/gladys-4-30/alarm-dashboard.jpg) + +Si vous voulez mettre en place une alarme avec Gladys, j'ai écris [un tutoriel complet](/fr/docs/dashboard/alarm/) sur le sujet ! + +## Intégration Node-RED + +Il était déjà possible d'interfacer Node-RED avec Gladys (Voir [mon tutoriel Youtube sur le sujet](https://www.youtube.com/watch?v=bpmHzR8_S5g)), mais cela demandait quelques connaissances car il fallait lancer Node-RED soit même. + +Lokkye a travaillé sur une intégration native afin de permettre à tous de lancer en un clic une instance Node-RED à côté de Gladys ! + +Désormais, rendez-vous dans l'intégration "Node-RED" puis cliquer sur "Activer" pour lancer un container Node-RED : + +![Intégration Node-RED Gladys](../../../static/img/articles/fr/gladys-4-30/node-red-integration.jpg) + +## Tuya: Gestion de la consommation électrique + +L'intégration Tuya supporte désormais les prises connectées qui remontent des données de consommations électriques. + +Merci Lokkye pour le développement 🙏 + +## Lancer une scène depuis le chat + +C'était déjà possible avec l'intégration ChatGPT, mais cette commande vient d'être ajouté dans le modèle de discussion "local" à Gladys, il est possible de demander à Gladys de lancer une scène dans le chat : + +![Lancer scène chat](../../../static/img/articles/fr/gladys-4-30/cinema-scene.png) + +Merci Lokkye pour le développement 🙏 + +## Lancer une scène en MQTT + +Vous pouvez désormais lancer une scène en MQTT en publiant un message sur le topic: + +``` +gladys/master/scene/SCENE_SELECTOR/start +``` + +En remplaçant `SCENE_SELECTOR` par le selector de la scène, qui peut-être trouvé dans l'URL de l'édition de la scène. + +Par exemple, pour la scène `http://192.168.1.10/dashboard/scene/cinema`, il faudra envoyer un message dans le topic: + +``` +gladys/master/scene/cinema/start +``` + +Merci Lokkye pour le développement 🙏 + +## Lancer une scène au démarrage de Gladys + +Vous voulez recevoir un message quand Gladys redémarre ? Effectuer une opération à tous les démarrages de Gladys ? + +Vous pouvez désormais lancer une scène au démarrage de Gladys : + +![Scène quand Gladys démarre](../../../static/img/articles/fr/gladys-4-30/gladys-start-trigger.png) + +Merci Lokkye pour le développement 🙏 + +## Zigbee2mqtt : Amélioration d'interfaces + +Désormais, les appareils déjà ajoutés ne seront plus affichés par défaut dans la page "Découverte du réseau Zigbee": + +![Zigbee2mqtt masquer les appareils déjà ajoutés](../../../static/img/articles/fr/gladys-4-30/zigbee2mqtt-hide-already-added-devices.png) + +L'URL de Zigbee2mqtt est désormais affichées sur la page de configuration : + +![Zigbee2mqtt masquer les appareils déjà ajoutés](../../../static/img/articles/fr/gladys-4-30/zigbee2mqtt-display-url.png) + +**Correction de bug** : Lors de la modification du port de la clé USB, Gladys relancer le container Zigbee2mqtt avec le bon volume. + +Merci à AlexTrovato et Cicoub13 pour ces améliorations 🙏 + +## Homekit : Gestion des capteurs d'humidité et de fuites + +Désormais, vos capteurs de fuites et d'humidité remettrons dans Homekit ! + +Merci bertrandda pour le développement 🙏 + +Le CHANGELOG complet est disponible [ici](https://github.com/GladysAssistant/Gladys/releases/tag/v4.30.0). + +## Comment mettre à jour ? + +Si vous avez installé Gladys avec l’image Raspberry Pi OS officielle, vos instances se mettront à jour **automatiquement** dans les heures à venir. Cela peut prendre jusqu’à 24h, pas de panique. + +Si vous avez installé Gladys avec Docker, vérifiez que vous utilisez bien Watchtower. Voir la [documentation](/fr/docs/installation/docker#mise-à-jour-automatique-avec-watchtower). + +Avec Watchtower, Gladys se mettra automatiquement à jour. + +## Supporter le projet + +Il y a plein de façons de supporter le projet : + +- Participer aux discussions sur le forum, aider les nouveaux. +- Contribuer au projet en proposant des nouvelles intégrations/fonctionnalités. +- Améliorer la documentation, qui est open-source. +- S'inscrire à [Gladys Plus](/fr/plus) actuellement en promotion à -40% la première année !! + +Merci à tous ceux qui supportent Gladys 🙏 diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/api/3_mqtt_api.md b/i18n/fr/docusaurus-plugin-content-docs/current/api/3_mqtt_api.md index faf0bebd..725bde78 100644 --- a/i18n/fr/docusaurus-plugin-content-docs/current/api/3_mqtt_api.md +++ b/i18n/fr/docusaurus-plugin-content-docs/current/api/3_mqtt_api.md @@ -6,7 +6,7 @@ sidebar_label: MQTT API Si vous avez configurer un broker MQTT avec Gladys, vous pouvez communiquer avec Gladys via MQTT. -#### Envoyer un nouvel état décimal +### Envoyer un nouvel état décimal Si vous avez un capteur de température qui doit retourner des valeurs en MQTT, vous pouvez envoyer vos valeurs sur le topic suivant: @@ -15,7 +15,7 @@ Topic: gladys/master/device/:device_external_id/feature/:device_feature_external Body: 22.2 ``` -#### Envoyer un nouvel état textuel +### Envoyer un nouvel état textuel Si vous voulez afficher du texte sur le tableau de bord Gladys, c'est possible avec l'intégration MQTT ! @@ -28,7 +28,7 @@ Topic: gladys/master/device/:device_external_id/feature/:device_feature_external Body: Magnifique ``` -#### Contrôler un périphérique depuis Gladys +### Contrôler un périphérique depuis Gladys Imaginons que vous êtes une ampoule contrôlable via MQTT. @@ -53,3 +53,19 @@ Ou ``` Ce qui veut dire "Gladys demande à la lampe de s'éteindre". + +### Lancer une scène en MQTT + +Vous pouvez désormais lancer une scène en MQTT en publiant un message sur le topic: + +``` +gladys/master/scene/SCENE_SELECTOR/start +``` + +En remplaçant `SCENE_SELECTOR` par le selector de la scène, qui peut-être trouvé dans l'URL de l'édition de la scène. + +Par exemple, pour la scène `http://192.168.1.10/dashboard/scene/cinema`, il faudra envoyer un message dans le topic: + +``` +gladys/master/scene/cinema/start +``` diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/dashboard/alarm.md b/i18n/fr/docusaurus-plugin-content-docs/current/dashboard/alarm.md new file mode 100644 index 00000000..6a9c3958 --- /dev/null +++ b/i18n/fr/docusaurus-plugin-content-docs/current/dashboard/alarm.md @@ -0,0 +1,91 @@ +--- +id: alarm +title: Comment configurer le mode alarme ? +sidebar_label: Alarme +--- + +Dans Gladys, il est possible de configurer un véritable système d'alarme. + +## Configurer le tableau de bord + +Sur le tableau de bord, vous pouvez ajouter un widget "Alarme" : + +![Alarme tableau de bord](../../../../../static/img/docs/fr/dashboard/alarm/alarm-dashboard.jpg) + +L'alarme dans Gladys a 4 modes : + +- **Armée** : La maison est armée. Mode utile quand vous êtes absent de la maison. +- **Désarmée** : La maison est désarmée, l'alarme n'est pas active. +- **Armement partiel** : Ce mode est pratique pour faire un "mode nuit" ou un "mode sieste". Vous êtes à la maison et vous souhaitez surveillez uniquement l'extérieur de la maison mais pas l'intérieur pour pouvoir continuer à vous déplacer. +- **Mode panique** : Un intru est dans la maison et vous voulez déclencher l'alarme, peut-être envoyer un message automatique à un proche ? + +Maintenant que vous avez compris les différents modes, il faut configurer des scènes pour mettre en place votre stratégie d'alarme. + +## Configurer le délai d'armement et le code de l'alarme + +Il y a 2 paramètres à définir dans les paramètres de la maison ("Paramètres" -> "Maisons") + +![Alarme maison paramètres](../../../../../static/img/docs/fr/dashboard/alarm/alarm-house-settings.jpg) + +- **Code de l'alarme** : Si vous utilisez le "mode tablette", Gladys affichera un clavier numérique sur ces tablettes quand l'alarme est armée. Le code défini ici servira à désactiver l'alarme. Nous parlerons de ce mode tablette plus bas dans ce tutoriel. +- **Délai avant l'armement** : Si vous voulez laisser un délai avant l'armement de l'alarme (entre 5 secondes et 1 minute), vous pouvez le configurer ici. Cela vous permet de sortir de la maison avant que l'alarme soit active. + +## Configurer des scènes + +Maintenant, il va falloir dire à Gladys ce que le mode alarme va faire. + +La première scène à créer, c'est une scène qui se déclenchera quand l'armement de l'alarme est en cours. + +Par exemple, vous pouvez vous envoyer un message Telegram quand l'alarme est en cours d'armement, ou faire un signal sonore dans la maison, faire clignoter les lumières, tout est possible ! + +![Alarme armement en cours...](../../../../../static/img/docs/fr/dashboard/alarm/alarm-arming.jpg) + +Ensuite, le scénario le plus important: que faire en cas d'intrusion ? + +Vous pouvez créer une scène sur plusieurs déclencheurs: + +- "Quand un mouvement est détecté dans le salon" +- "Quand un mouvement est détecté dans la cuisine" +- "Quand la porte d'entrée est ouverte" + +![Alarme mouvement scènes](../../../../../static/img/docs/fr/dashboard/alarm/alarm-scene-motion.jpg) + +Puis ajouter une condition "ET que l'alarme est en mode armée" : + +![Alarme condition de scène](../../../../../static/img/docs/fr/dashboard/alarm/alarm-condition.jpg) + +Si cette condition est vérifie, la scène continuera et vous pouvez ensuite vous envoyer un message Telegram, vous envoyez une image de caméra via Telegram, déclencher une alerte sonore dans la maison, etc... + +Si quelqu'un s'introduit chez vous, il va peut-être essayer de déverouiller Gladys via vos tablettes au mur. + +Il est possible de tester 3 codes avant que le clavier se bloque pour 5 minutes, et au bout de 3 codes échoués, ce déclencheur de scène sera appelé : + +![Alarm mauvais code scène](../../../../../static/img/docs/fr/dashboard/alarm/wrong-alarm-code.jpg) + +Vous pouvez créer une scène sur ce déclencheur qui vous préviendras par message. + +## Mode tablette + +Si vous avez une tablette au mur chez vous, vous pouvez la déclarer à Gladys via le bouton "Mode tablette" : + +![Mode tablette](../../../../../static/img/docs/fr/dashboard/alarm/alarm-tablet-mode-button.jpg) + +En cliquant sur ce bouton, vous verrez un formulaire qui vous invite à renseigner la maison dans laquelle cette tablette est située. + +Gladys vous demande cette information pour savoir quand elle devra "verrouiller" la tablette : + +![Mode tablette configuration](../../../../../static/img/docs/fr/dashboard/alarm/alarm-tablet-mode-config.jpg) + +Je le précise sur cet écran, si vous voulez que votre tablette soit en plein-écran (et le reste), vous pouvez ajouter un paramètre à l'URL: `?fullscreen=force`. + +Ce "plein écran forcé" n'a pas de rapport avec le mode tablette, l'un et l'autre sont entièrement indépendant. + +Quand l'alarme sera armée, automatiquement Gladys ira chercher toutes les tablettes de la maison, et les verrouillera. + +Ces tablettes afficherons un clavier numérique qui vous permettra de déverrouiller l'alarme : + +![Mode tablette code numérique](../../../../../static/img/docs/fr/dashboard/alarm/alarm-tablet-mode-locked.jpg) + +Ce clavier est une alternative aux claviers physique, mais vous pouvez tout à fait utiliser un vrai clavier physique Zigbee et faire une scène qui désarme l'alarme quand ce clavier est utilisé. + +Vous pouvez aussi entièrement vous passer de ces claviers et désarmer l'alarme via votre téléphone via le widget "Alarme". diff --git a/sidebars.js b/sidebars.js index 584f6826..3e14639a 100644 --- a/sidebars.js +++ b/sidebars.js @@ -71,6 +71,7 @@ module.exports = { label: "Dashboard", items: [ "dashboard/intro", + "dashboard/alarm", "dashboard/weather", "dashboard/temperature-in-room", "dashboard/camera", diff --git a/src/pages/plus.js b/src/pages/plus.js index bacf05f2..1670884f 100644 --- a/src/pages/plus.js +++ b/src/pages/plus.js @@ -313,10 +313,23 @@ function Plus() { id="gladysPlusPage.subscribe" description="Gladys Plus subscribe" > - For the launch of the Tuya integration, -40% on the - first payment (annual or monthly) with the code - TUYA2023! + For the launch of the Alarm feature, -40% on the first + annual payment with the code ALARM2023! + {language === "fr" && ( +
+ FLASH 30/10 - 05/11 2023 : Offre limitée, un
+ capteur{" "}
+
+ connectée Zigbee ouverture porte-fenêtre
+ {" "}
+ OFFERT pour chaque paiement annuel !!
+
( Livraison en UE uniquement )
+