<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"><channel><category>pcsoft.fr.windev</category><copyright>Copyright 2026, PC SOFT</copyright><lastBuildDate>4 Jul 2020 11:17:13 Z</lastBuildDate><pubDate>26 Feb 2020 15:07:55 Z</pubDate><description>Bonjour,&#13;
Voici un petit tutoriel IOT illustré, basé sur le protocole MQTT , utilisant un serveur dédié linux(DEBIAN 8.11.0), HFSQL25 LINUX et le serveur d'application v25  Linux.&#13;
&#13;
# DEPUIS VOTRE TERMINAL EN LIGNE DE COMMANDE AVEC PUTTY(https://www.putty.org/)&#13;
&#13;
# TESTS RÉALISES SUR UBUNTU 16.04.6 LTS ET DEBIAN 8.11.0&#13;
&#13;
# SE CONNECTER EN ROOT&#13;
&#13;
# SI LA CONNEXION EN ROOT N'EST PAS AUTORISÉE&#13;
&#13;
TAPEZ&#13;
su      # pour SUPER UTILISATEUR DEBIAN&#13;
# OU&#13;
sudo # POUR UBUNTU 16.04.6 LTS&#13;
&#13;
nano /etc/ssh/sshd_config 	# EDITER LA CONFIG DU sshd AVEC ÉDITEUR nano&#13;
&#13;
service sshd restart		# REBOOTER LE SERVEUR SSHD&#13;
&#13;
# RECONNECTEZ-VOUS EN ROOT AVEC PUTTY&#13;
&#13;
## INSTALLATION DE curl&#13;
&#13;
apt-get install curl&#13;
&#13;
# INSTALLATION DE GIT&#13;
&#13;
apt-get install git&#13;
&#13;
# INSTALLATION DE SUDO&#13;
&#13;
apt-get install sudo&#13;
&#13;
# INSTALLATION DE NPM&#13;
&#13;
curl -sL https://deb.nodesource.com/setup_8.x | sudo bash -&#13;
&#13;
#  INSTALLATION DU COMPILATEUR GCC&#13;
&#13;
sudo apt-get install gcc g++ make&#13;
&#13;
curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -&#13;
&#13;
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list&#13;
&#13;
sudo apt-get update &amp;&amp; sudo apt-get install yarn&#13;
&#13;
# INSTALLATION DE NODE&#13;
&#13;
sudo apt-get install -y nodejs-legacy&#13;
&#13;
# INSTALLATION DE MOSQUITTO LE BROKER (MQTT)&#13;
&#13;
sudo apt-get install -y mosquitto&#13;
&#13;
#INSTALLATION DE LA LIBRAIRIE OPENZWAVE-1.6.1044&#13;
&#13;
sudo apt-get install libudev-dev&#13;
&#13;
cd ~&#13;
&#13;
wget http://old.openzwave.com/downloads/openzwave-1.6.1044.tar.gz&#13;
&#13;
tar zxvf openzwave-*.gz&#13;
&#13;
cd openzwave-* &amp;&amp; make &amp;&amp; sudo make install&#13;
&#13;
sudo ldconfig /usr/local/lib64&#13;
&#13;
# INSTALLATION DE LA PASSERELLE Zwave2MQTT (fait le lien entre Z-Wave Plus USB Stick Aeotec Gen5 et le broker MQTT Mosquitto)&#13;
&#13;
cd ..&#13;
&#13;
git clone https://github.com/ltoinel/ZWave2MQTT.git&#13;
&#13;
cd ZWave2MQTT&#13;
&#13;
npm install&#13;
&#13;
nano config.js # EDITER LE congig.js&#13;
&#13;
# Configurez les différentes options disponibles :&#13;
&#13;
# Les deux options importantes à modifier sont :&#13;
&#13;
# L'adresse IP de votre passerelle MQTT : "config.mqtt.uri"&#13;
&#13;
# 192.168.1.xx&#13;
&#13;
# Le pointeur vers votre dongle ZWave : "config.device"&#13;
&#13;
# /dev/ttyACM0&#13;
&#13;
# Démarrez ensuite la passerelle :&#13;
&#13;
$ ./start.sh&#13;
&#13;
#initialising OpenZWave addon&#13;
&#13;
#(/opt/zwave2mqtt/node_modules/openzwave-shared/lib/../build/Release/openzwave_shared.node)&#13;
&#13;
#Initialising OpenZWave 1.4.2723 binary addon for Node.JS.&#13;
&#13;
#        OpenZWave Security API is ENABLED&#13;
&#13;
#        ZWave device db    : /usr/local/etc/openzwave&#13;
&#13;
#        User settings path : #/opt/zwave2mqtt/node_modules/openzwave-shared/build/Release/../../&#13;
&#13;
#        Option Overrides : --SaveConfig false --Logging false --ConsoleOutput true #--SuppressRefresh false&#13;
&#13;
#-&gt; Starting zwave2mqtt v1.1.0&#13;
&#13;
#Connecting to the MQTT Server : mqtt://192.168.1.XX&#13;
&#13;
#Connected to the MQTT broker&#13;
&#13;
#{"name":"zwave2mqtt","hostname":"domogeeek","pid":1340,"level":30,"msg":"Scanning #homeid=0x184ced3...","time":"2017-09-10T14:36:00.557Z","v":0}&#13;
&#13;
#{"name":"zwave2mqtt","hostname":"domogeeek","pid":1340,"level":30,"msg":"Scan&#13;
&#13;
# complete, hit ^C to #finish.","time":"2017-09-10T14:36:25.163Z","v":0}&#13;
&#13;
&#13;
&#13;
sudo ls -n /usr/local/lib64/libopenzwave.so.1.6 /usr/local/lib/libopenzwave.so.1.6&#13;
&#13;
sudo ldconfig&#13;
&#13;
# COMMANDE TACHE CRON POUR UN DÉMARRAGE AUTOMATIQUE AU BOOT&#13;
&#13;
cd /home/ZWave2MQTT/ &amp;&amp; ./start.sh&#13;
&#13;
# INSTALLATION NODE-RED(POUR MAQUETTAGE ET DÉBOGAGE)&#13;
&#13;
cd ..&#13;
&#13;
sudo npm install -g --unsafe-perm node-red node-red-admin&#13;
&#13;
# COMMANDE TACHE CRON POUR UN DÉMARRAGE AUTOMATIQUE AU BOOT&#13;
&#13;
node-red&#13;
&#13;
# INSTALLER VOTRE CLE USB ZWAVES (Z-Wave Plus USB Stick Aeotec Gen5)&#13;
&#13;
&#13;
https://hostimage.windev.io/images/ZWavePlusUSBStickAeotecGen5_12d00ff7f29e9f4579836c9c28cbe43f.jpg&#13;
&#13;
# ACCÈS A NODE RED DEPUIS LE NAVIGATEUR&#13;
&#13;
http:// nom_serveur_linux:1880&#13;
https://hostimage.windev.io/images/nodered1_cfed4462ec392fe869c0b58d2922add2.jpg&#13;
&#13;
# PLACER mqtt in et debug D'UN SIMPLE GLISSER DÉPOSER sur le FLOW1&#13;
&#13;
# CLIQUER SUR  mqtt in ET LE PARAMETRER(utiliser le Topic # pour afficher tous les niveaux de messages)&#13;
https://hostimage.windev.io/images/nodered2_22148b10fd996d6d6c44d35a22e91763.jpg&#13;
&#13;
https://hostimage.windev.io/images/nodered3_c451b51b437af411d7b754a6ce8ac7dc.jpg&#13;
&#13;
&#13;
# MÊME PROCÉDURE POUR DEBUG&#13;
&#13;
https://hostimage.windev.io/images/nodered4_7d2a7959db68744706e57e39a13146ac.jpg&#13;
&#13;
https://hostimage.windev.io/images/nodered5_f0d3462f0df261e1f330eed75e8d218f.jpg&#13;
# ENFIN CLIQUER SUR Deploy EN HAUT A DROITE POUR AFFCIHER LES MESSAGES ISSUS DU OU DES CAPTEURS COMME ICI LE FGMS-001 ZW5 V3.3 DE FIBARO&#13;
&#13;
&#13;
https://hostimage.windev.io/images/FGMS001ZW5_6e2795904d194fd5fffe57c176b10967.jpg&#13;
&#13;
# INSTALLATION WEBMIN POUR UN MEILLEUR CONFORT DE PARAMÉTRAGE&#13;
&#13;
sudo nano /etc/apt/sources.list&#13;
&#13;
At the end of the file, add these two lines, then save and close:&#13;
&#13;
deb http://download.webmin.com/download/repository sarge contrib&#13;
&#13;
deb http://webmin.mirror.somersettechsolutions.co.uk/repository sarge contrib&#13;
&#13;
sudo wget http://www.webmin.com/jcameron-key.asc&#13;
&#13;
sudo apt-key add jcameron-key.asc&#13;
&#13;
sudo apt-get update&#13;
&#13;
sudo apt-get install webmin&#13;
&#13;
# POUR SE CONNECTER A L'INTERFACE DE WEBMIN&#13;
&#13;
https://nom_serveur_linux:10000&#13;
&#13;
https://hostimage.windev.io/images/webmin1_5d4a4fdc589910b2ad74a22ee8b76e5d.jpg&#13;
&#13;
&#13;
https://hostimage.windev.io/images/webmin2_d6654d25b389cd8cdb445a5eacad38d9.jpg&#13;
&#13;
 WEBMIN  EST UTILISE POUR COPIER / CRÉER/EFFACER/DÉPLACER DES FICHIERS&#13;
&#13;
# CRÉER LES TACHES CRON, VÉRIFIER LES SERVICES, CRÉER DES UTILISATEURS, MODIFIER LES DROITS, ETC.. TRÈS FACILE A UTILISER.&#13;
Bonne journée&#13;
Xav33&#13;
:D</description><ttl>30</ttl><generator>WEBDEV</generator><language>fr_FR</language><link>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/237320-tutoriel-iot-base-sur-exemple-windev-tech-tour/read.awp</link><title>Tutoriel IOT basé sur l'exemple du WINDEV Tech Tour 2018 (WD Collecteur MQTT WTT23)</title><managingEditor>moderateur@pcsoft.fr (El moderador)</managingEditor><webMaster>webmaster@pcsoft.fr (El webmaster)</webMaster><item><author>CH GHADA</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/237320-tutoriel-iot-base-sur-exemple-windev-tech-tour-240945/read.awp</comments><pubDate>4 Jul 2020 11:17:13 Z</pubDate><description>Ghada a écrit : &#13;
&gt; It show connected but there is no data&#13;
&gt; &#13;
&gt; &#13;
&gt; &#13;
&gt; &#13;
&gt; &#13;
&gt;</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/237320-tutoriel-iot-base-sur-exemple-windev-tech-tour-240945/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/237320-tutoriel-iot-base-sur-exemple-windev-tech-tour-240945/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/237320-tutoriel-iot-base-sur-exemple-windev-tech-tour/read.awp">Tutoriel IOT basé sur l'exemple du WINDEV Tech Tour 2018 (WD Collecteur MQTT WTT23)</source><title>Re: Tutoriel IOT basé sur l'exemple du WINDEV Tech Tour 2018 (WD Collecteur MQTT WTT23)</title></item><item><author>ghada.chouichi</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/237320-tutoriel-iot-base-sur-exemple-windev-tech-tour-240921/read.awp</comments><pubDate>3 Jul 2020 11:41:01 Z</pubDate><description>It show connected but there is no data&#13;
&#13;
&#13;
&#13;
https://hostimage.windev.io/images/86454276e957d880bd1611ea9f876df696748165_4651e5…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/237320-tutoriel-iot-base-sur-exemple-windev-tech-tour-240921/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/237320-tutoriel-iot-base-sur-exemple-windev-tech-tour-240921/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/237320-tutoriel-iot-base-sur-exemple-windev-tech-tour/read.awp">Tutoriel IOT basé sur l'exemple du WINDEV Tech Tour 2018 (WD Collecteur MQTT WTT23)</source><title>Re: Tutoriel IOT basé sur l'exemple du WINDEV Tech Tour 2018 (WD Collecteur MQTT WTT23)</title></item></channel></rss>
