Skip to content

Commit

Permalink
v3.0.6 - Refactor mmHa
Browse files Browse the repository at this point in the history
  • Loading branch information
MickMake committed May 15, 2023
1 parent 2bac94d commit 1d1cdd9
Show file tree
Hide file tree
Showing 54 changed files with 29 additions and 29 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mmHa
package cmdHassio

import (
"encoding/json"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion mmHa/binary_sensor.go → cmdHassio/binary_sensor.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mmHa
package cmdHassio

import (
"encoding/json"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion mmHa/button.go → cmdHassio/button.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mmHa
package cmdHassio

import (
"encoding/json"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion mmHa/camera.go → cmdHassio/camera.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mmHa
package cmdHassio

import (
"encoding/json"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion mmHa/climate.go → cmdHassio/climate.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mmHa
package cmdHassio

import (
"encoding/json"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion mmHa/config.go → cmdHassio/config.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mmHa
package cmdHassio

import (
"encoding/json"
Expand Down
1 change: 1 addition & 0 deletions cmdHassio/const.go
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package cmdHassio
2 changes: 1 addition & 1 deletion mmHa/cover.go → cmdHassio/cover.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mmHa
package cmdHassio

import (
"encoding/json"
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion mmHa/device_tracker.go → cmdHassio/device_tracker.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mmHa
package cmdHassio

import (
"encoding/json"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion mmHa/device_trigger.go → cmdHassio/device_trigger.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mmHa
package cmdHassio

import (
"encoding/json"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion mmHa/fan.go → cmdHassio/fan.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mmHa
package cmdHassio

import (
"encoding/json"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion mmHa/funcs.go → cmdHassio/funcs.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mmHa
package cmdHassio

import (
"regexp"
Expand Down
2 changes: 1 addition & 1 deletion mmHa/humidifier.go → cmdHassio/humidifier.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mmHa
package cmdHassio

import (
"encoding/json"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion mmHa/lights.go → cmdHassio/lights.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mmHa
package cmdHassio

import (
"encoding/json"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion mmHa/lock.go → cmdHassio/lock.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mmHa
package cmdHassio

import (
"encoding/json"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion mmHa/number.go → cmdHassio/number.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mmHa
package cmdHassio

import (
"encoding/json"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion mmHa/options.go → cmdHassio/options.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mmHa
package cmdHassio

import (
"GoSungrow/iSolarCloud/api/GoStruct/valueTypes"
Expand Down
2 changes: 1 addition & 1 deletion mmHa/scene.go → cmdHassio/scene.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mmHa
package cmdHassio

import (
"encoding/json"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion mmHa/select.go → cmdHassio/select.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mmHa
package cmdHassio

import (
"encoding/json"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion mmHa/sensors.go → cmdHassio/sensors.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mmHa
package cmdHassio

import (
"encoding/json"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion mmHa/siren.go → cmdHassio/siren.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mmHa
package cmdHassio

import (
"encoding/json"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion mmHa/struct.go → cmdHassio/struct.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mmHa
package cmdHassio

import (
"GoSungrow/iSolarCloud/AppService/getDeviceList"
Expand Down
1 change: 1 addition & 0 deletions cmdHassio/struct_logging.go
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package cmdHassio
2 changes: 1 addition & 1 deletion mmHa/switch.go → cmdHassio/switch.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mmHa
package cmdHassio

import (
"encoding/json"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion mmHa/tag.go → cmdHassio/tag.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mmHa
package cmdHassio

import (
"encoding/json"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion mmHa/text.go → cmdHassio/text.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mmHa
package cmdHassio

import (
"encoding/json"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion mmHa/types.go → cmdHassio/types.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mmHa
package cmdHassio


// Device - device map (optional)
Expand Down
2 changes: 1 addition & 1 deletion mmHa/update.go → cmdHassio/update.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mmHa
package cmdHassio

import (
"encoding/json"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion mmHa/vacuum.go → cmdHassio/vacuum.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package mmHa
package cmdHassio

import (
"encoding/json"
Expand Down
File renamed without changes.
1 change: 0 additions & 1 deletion mmHa/const.go

This file was deleted.

1 change: 0 additions & 1 deletion mmHa/struct_logging.go

This file was deleted.

0 comments on commit 1d1cdd9

Please sign in to comment.