Skip to content

Commit

Permalink
Merge pull request #83 from dvdgeisler/develop
Browse files Browse the repository at this point in the history
Remove motion sensor from HASS
  • Loading branch information
TheMrBooyah authored May 10, 2023
2 parents 775d29a + ac28b68 commit 6f44c28
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 122 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@

import de.dvdgeisler.iot.dirigera.client.api.DirigeraApi;
import de.dvdgeisler.iot.dirigera.client.mqtt.hass.HassLightDeviceEventHandler;
import de.dvdgeisler.iot.dirigera.client.mqtt.hass.HassMotionSensorDeviceEventHandler;
import de.dvdgeisler.iot.dirigera.client.mqtt.hass.HassOutletDeviceEventHandler;
import org.eclipse.paho.client.mqttv3.*;
import org.eclipse.paho.client.mqttv3.IMqttDeliveryToken;
import org.eclipse.paho.client.mqttv3.MqttCallback;
import org.eclipse.paho.client.mqttv3.MqttClient;
import org.eclipse.paho.client.mqttv3.MqttConnectOptions;
import org.eclipse.paho.client.mqttv3.MqttException;
import org.eclipse.paho.client.mqttv3.MqttMessage;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Value;
Expand All @@ -20,7 +24,6 @@
@ComponentScan(basePackageClasses = {
DirigeraApi.class,
HassLightDeviceEventHandler.class,
HassMotionSensorDeviceEventHandler.class,
HassOutletDeviceEventHandler.class})
public class DirigeraClientMqttApplication implements MqttCallback {
private final static Logger log = LoggerFactory.getLogger(DirigeraClientMqttApplication.class);
Expand Down

This file was deleted.

This file was deleted.

0 comments on commit 6f44c28

Please sign in to comment.