MQTT Visualisierte Steuerung Sensor: Unterschied zwischen den Versionen

Aus Xinux Wiki
Zur Navigation springen Zur Suche springen
 
(4 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 4: Zeile 4:
  
 
==== Neues Verzeichnis für den Steuerungsserver erstellen ====
 
==== Neues Verzeichnis für den Steuerungsserver erstellen ====
*'''mkdir /usr/local/control-switch'''
+
*mkdir /usr/local/control-switch
*'''cd /usr/local/control-switch'''
+
*cd /usr/local/control-switch
  
 
==== Initialisiere das Node.js-Projekt ====
 
==== Initialisiere das Node.js-Projekt ====
*'''npm init -y'''
+
*npm init -y
  
 
==== Installiere die benötigten Pakete ====
 
==== Installiere die benötigten Pakete ====
*'''npm install mqtt express'''
+
*npm install mqtt express
  
 
==== Konfiguration des Steuerungsservers ====
 
==== Konfiguration des Steuerungsservers ====
Zeile 17: Zeile 17:
  
 
<pre>
 
<pre>
 
 
const mqtt = require('mqtt');
 
const mqtt = require('mqtt');
 
const express = require('express');
 
const express = require('express');
Zeile 23: Zeile 22:
 
const app = express();
 
const app = express();
 
const port = 3000;
 
const port = 3000;
 
+
const fs = require('fs');
 
let status = {
 
let status = {
 
   livingRoom: 'off',
 
   livingRoom: 'off',
Zeile 31: Zeile 30:
 
};
 
};
  
// MQTT connection options (without TLS for unencrypted communication)
+
// MQTT-Verbindung herstellen
 
const options = {
 
const options = {
 +
//  username: 'xinux',
 +
//  password: '123Start$',
 +
//  port: 8883,
 +
//  protocol: 'mqtts',
 +
//  ca: fs.readFileSync('./ca.crt'),
 
   port: 1883,
 
   port: 1883,
 
   host: 'mqtt.dkbi.int'
 
   host: 'mqtt.dkbi.int'
Zeile 40: Zeile 44:
  
 
client.on('connect', () => {
 
client.on('connect', () => {
   console.log('Connected to the MQTT broker');
+
   console.log('Connected to the broker');
 
   client.subscribe('home/+/status', (err) => {
 
   client.subscribe('home/+/status', (err) => {
 
     if (!err) {
 
     if (!err) {
Zeile 54: Zeile 58:
 
});
 
});
  
// Route to get the status of the lights and front door
+
// API route to get the status of the lights and front door
 
app.get('/status', (req, res) => {
 
app.get('/status', (req, res) => {
 
   res.send(status);
 
   res.send(status);
 
});
 
});
  
// Route to toggle a device
+
// Serve static directory for the web interface
app.post('/toggle/:device', (req, res) => {
 
  const device = req.params.device;
 
  const currentStatus = status[device];
 
 
 
  if (!currentStatus) {
 
    res.status(400).send({ error: 'Invalid device' });
 
    return;
 
  }
 
 
 
  // Toggle the status (for front door: closed/open)
 
  let newStatus;
 
  if (device === 'frontDoor') {
 
    newStatus = currentStatus === 'closed' ? 'open' : 'closed';
 
  } else {
 
    newStatus = currentStatus === 'on' ? 'off' : 'on';
 
  }
 
  status[device] = newStatus;
 
 
 
  // Send MQTT message
 
  const topic = `home/${device}/status`;
 
  client.publish(topic, newStatus, (err) => {
 
    if (err) {
 
      console.log(`Error sending message to ${device}: ${err.message}`);
 
      res.status(500).send({ success: false, message: 'Error sending message' });
 
    } else {
 
      console.log(`Message sent: ${device} is now ${newStatus}`);
 
      res.send({ success: true, message: `Device ${device} successfully toggled` });
 
    }
 
  });
 
});
 
 
 
// Serve the static directory for the web interface
 
 
app.use(express.static(path.join(__dirname)));
 
app.use(express.static(path.join(__dirname)));
  
 
// Start the web server
 
// Start the web server
 
app.listen(port, () => {
 
app.listen(port, () => {
   console.log(`Control Center is running at http://localhost:${port}`);
+
   console.log(`Control Center is running at http://0.0.0.0:${port}`);
 
});
 
});
 
+
 
  
 
</pre>
 
</pre>
Zeile 120: Zeile 92:
 
     }
 
     }
 
     .on {
 
     .on {
       background-color: green;
+
       background-color: yellow;
       color: white;
+
       color: black;
 
     }
 
     }
 
     .off {
 
     .off {
       background-color: red;
+
       background-color: gray;
 
       color: white;
 
       color: white;
 
     }
 
     }
 
     .open {
 
     .open {
       background-color: blue;
+
       background-color: red;
 
       color: white;
 
       color: white;
 
     }
 
     }
Zeile 142: Zeile 114:
 
         .then(response => response.json())
 
         .then(response => response.json())
 
         .then(data => {
 
         .then(data => {
 +
          // Update the class and text for each device
 
           document.getElementById('livingRoom').className = 'device ' + (data.livingRoom === 'on' ? 'on' : 'off');
 
           document.getElementById('livingRoom').className = 'device ' + (data.livingRoom === 'on' ? 'on' : 'off');
 +
          document.getElementById('livingRoom').textContent = 'Living Room Light: ' + (data.livingRoom === 'on' ? 'On' : 'Off');
 +
 
           document.getElementById('bedroom').className = 'device ' + (data.bedroom === 'on' ? 'on' : 'off');
 
           document.getElementById('bedroom').className = 'device ' + (data.bedroom === 'on' ? 'on' : 'off');
 +
          document.getElementById('bedroom').textContent = 'Bedroom Light: ' + (data.bedroom === 'on' ? 'On' : 'Off');
 +
 
           document.getElementById('kitchen').className = 'device ' + (data.kitchen === 'on' ? 'on' : 'off');
 
           document.getElementById('kitchen').className = 'device ' + (data.kitchen === 'on' ? 'on' : 'off');
 +
          document.getElementById('kitchen').textContent = 'Kitchen Light: ' + (data.kitchen === 'on' ? 'On' : 'Off');
 +
 
           document.getElementById('frontDoor').className = 'device ' + (data.frontDoor === 'open' ? 'open' : 'closed');
 
           document.getElementById('frontDoor').className = 'device ' + (data.frontDoor === 'open' ? 'open' : 'closed');
 +
          document.getElementById('frontDoor').textContent = 'Front Door: ' + (data.frontDoor === 'open' ? 'Open' : 'Closed');
 
         });
 
         });
 
     }
 
     }
Zeile 167: Zeile 147:
 
</body>
 
</body>
 
</html>
 
</html>
 +
  
  
Zeile 189: Zeile 170:
  
 
==== Steuerungsserver starten und beim Booten aktivieren ====
 
==== Steuerungsserver starten und beim Booten aktivieren ====
*'''systemctl start control-switch.service'''
+
*systemctl start control-switch.service
*'''systemctl enable control-switch.service'''
+
*systemctl enable control-switch.service
 
 
==== Steuerung der Geräte über HTTP ====
 
Nun können die Geräte über den separaten Server gesteuert werden:
 
 
 
- Wohnzimmerlicht einschalten: `http://localhost:3001/toggle/wohnzimmer`
 
- Schlafzimmerlicht einschalten: `http://localhost:3001/toggle/schlafzimmer`
 
- Küchenlicht einschalten: `http://localhost:3001/toggle/kueche`
 
- Haustür öffnen: `http://localhost:3001/toggle/haustuer`
 
 
 
Der Server ist für die Steuerung der Geräte per HTTP zuständig und sendet die entsprechenden MQTT-Nachrichten.
 

Aktuelle Version vom 4. November 2024, 14:21 Uhr

Voraussetzungen

Neues Verzeichnis für den Steuerungsserver erstellen

  • mkdir /usr/local/control-switch
  • cd /usr/local/control-switch

Initialisiere das Node.js-Projekt

  • npm init -y

Installiere die benötigten Pakete

  • npm install mqtt express

Konfiguration des Steuerungsservers

Erstelle die Datei switch-server.js im Verzeichnis /usr/local/control-switch mit folgendem Inhalt:

const mqtt = require('mqtt');
const express = require('express');
const path = require('path');
const app = express();
const port = 3000;
const fs = require('fs');
let status = {
  livingRoom: 'off',
  bedroom: 'off',
  kitchen: 'off',
  frontDoor: 'closed'
};

// MQTT-Verbindung herstellen
const options = {
 //  username: 'xinux',
 //  password: '123Start$',
 //  port: 8883,
 //  protocol: 'mqtts',
 //  ca: fs.readFileSync('./ca.crt'),
  port: 1883,
  host: 'mqtt.dkbi.int'
};

const client = mqtt.connect(options);

client.on('connect', () => {
  console.log('Connected to the broker');
  client.subscribe('home/+/status', (err) => {
    if (!err) {
      console.log('Subscribed to all topics');
    }
  });
});

client.on('message', (topic, message) => {
  const room = topic.split('/')[1];
  status[room] = message.toString();
  console.log(`Status of ${room}: ${status[room]}`);
});

// API route to get the status of the lights and front door
app.get('/status', (req, res) => {
  res.send(status);
});

// Serve static directory for the web interface
app.use(express.static(path.join(__dirname)));

// Start the web server
app.listen(port, () => {
  console.log(`Control Center is running at http://0.0.0.0:${port}`);
});
  

Die HTML Datei index.html

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Control Center</title>
  <style>
    .device {
      margin: 20px;
      padding: 10px;
      border-radius: 10px;
      text-align: center;
      font-size: 1.5em;
      cursor: pointer;
    }
    .on {
      background-color: yellow;
      color: black;
    }
    .off {
      background-color: gray;
      color: white;
    }
    .open {
      background-color: red;
      color: white;
    }
    .closed {
      background-color: gray;
      color: white;
    }
  </style>
  <script>
    // Fetch and display the status of devices
    function fetchStatus() {
      fetch('/status')
        .then(response => response.json())
        .then(data => {
          // Update the class and text for each device
          document.getElementById('livingRoom').className = 'device ' + (data.livingRoom === 'on' ? 'on' : 'off');
          document.getElementById('livingRoom').textContent = 'Living Room Light: ' + (data.livingRoom === 'on' ? 'On' : 'Off');

          document.getElementById('bedroom').className = 'device ' + (data.bedroom === 'on' ? 'on' : 'off');
          document.getElementById('bedroom').textContent = 'Bedroom Light: ' + (data.bedroom === 'on' ? 'On' : 'Off');

          document.getElementById('kitchen').className = 'device ' + (data.kitchen === 'on' ? 'on' : 'off');
          document.getElementById('kitchen').textContent = 'Kitchen Light: ' + (data.kitchen === 'on' ? 'On' : 'Off');

          document.getElementById('frontDoor').className = 'device ' + (data.frontDoor === 'open' ? 'open' : 'closed');
          document.getElementById('frontDoor').textContent = 'Front Door: ' + (data.frontDoor === 'open' ? 'Open' : 'Closed');
        });
    }

    // Toggle a device and update its status
    function toggleDevice(device) {
      fetch(`/toggle/${device}`, { method: 'POST' })
        .then(fetchStatus);
    }

    // Fetch status every second
    setInterval(fetchStatus, 1000);
  </script>
</head>
<body>
  <h1>Control Center</h1>
  <div id="livingRoom" class="device off" onclick="toggleDevice('livingRoom')">Living Room Light: Off</div>
  <div id="bedroom" class="device off" onclick="toggleDevice('bedroom')">Bedroom Light: Off</div>
  <div id="kitchen" class="device off" onclick="toggleDevice('kitchen')">Kitchen Light: Off</div>
  <div id="frontDoor" class="device closed" onclick="toggleDevice('frontDoor')">Front Door: Closed</div>
</body>
</html>



systemd-Unit für den Steuerungsserver erstellen

Erstelle die Datei /etc/systemd/system/control-switch.service mit folgendem Inhalt:

[Unit]
Description=Home Control Switch Server

[Service]
Type=simple
WorkingDirectory=/usr/local/control-switch
ExecStart=/usr/bin/node server.js
ExecStartPost=/bin/echo "Schalt-Server gestartet"

[Install]
WantedBy=multi-user.target

Steuerungsserver starten und beim Booten aktivieren

  • systemctl start control-switch.service
  • systemctl enable control-switch.service