Skip to content

Commit

Permalink
Merge pull request #82 from dvdgeisler/bugfix/remove_motion_sensor_fr…
Browse files Browse the repository at this point in the history
…om_hass

Remove motion sensor from HASS
  • Loading branch information
TheMrBooyah authored May 10, 2023
2 parents a16608a + a620c94 commit 3f38de8
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 @@ -19,7 +23,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 3f38de8

Please sign in to comment.