MyHomeThings
Published © GPL3+

IoBroker Installation on Raspberry Pi or Debian Linux

To automate your home, we need a central unit that brings together our other IoT devices, for which ioBroker is a good solution.

BeginnerFull instructions provided2 hours5,270
IoBroker Installation on Raspberry Pi or Debian Linux

Things used in this project

Hardware components

Raspberry pi 4
×1
Raspberry Pi 4 Power Supply (USB-C)
×1
SD Card 16 Gb
×1
NodeMCU ESP8266 ESP-12E
×1

Software apps and online services

Arduino IDE
Arduino IDE
ioBroker

Story

Read more

Schematics

Relay example

Code

ESP8266 example for iobroker

Arduino
/**************************************/
//  https://myhomethings.eu           //
//  ESP32 Module                      //
//  Pushsafer Test                    //
/**************************************/

#include <ESP8266WiFi.h>
#include <PubSubClient.h>

const char* ssid = "Wifi SSID";
const char* password = "Wifi Password";
const char* mqtt_server = "192.168.xxx.xxx";

int Led = D5;

WiFiClient espClient;
PubSubClient client(espClient);


void setup() 
{
  WiFi.mode(WIFI_STA);
  WiFi.begin(ssid, password);
  while (WiFi.status() != WL_CONNECTED) 
  {
    delay(500);
  }
  client.setServer(mqtt_server, 1883);
  client.setCallback(callback);
  
  pinMode(Led, OUTPUT);
  digitalWrite(Led, LOW);
}

void loop() 
{
  if (!client.connected()) 
  {
    reconnect();
  }
  client.loop();
}

void reconnect() 
{
  while (!client.connected()) 
  {
    String clientId = "ESP8266_LED_Client";
    
    if (client.connect(clientId.c_str()))
    {
      client.subscribe("LEDtopic");
    } 
    else 
    {
      delay(6000);
    }
  }
}

void callback(char* topic, byte* payload, unsigned int length) 
{
  payload[length] = '\0';
  String strTopic = String(topic);
  String strPayload = String((char * ) payload);
  
  if(strTopic == "LEDtopic") 
  {
    if(strPayload == "false") 
    {
      digitalWrite(Led, LOW);
    }
    
    if(strPayload == "true") 
    {
      digitalWrite(Led, HIGH);
    }
  }
}

Credits

MyHomeThings
11 projects • 6 followers
Contact

Comments

Please log in or sign up to comment.