-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
67440c1
commit deecf4f
Showing
189 changed files
with
11,532 additions
and
2,419 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,21 @@ | ||
### 2022-08-09 First release | ||
### 2023-02-10 V1.3 | ||
+ Add Automation | ||
+ Add device Fronius via API | ||
+ Add device Tracer serie and compatible (Fa. Rover, Fa. Wattstunde, EPEVER XTRA 4415N) | ||
+ Add device Peacefair PCEM | ||
+ Bugfixes | ||
|
||
### 2022-10-30 V1.1 | ||
### 2022-12-19 V1.2 | ||
+ Add device Fronius Symo | ||
+ Add device Fronius Primo | ||
+ Add device Fronius Smartmeter | ||
+ Add device Powmr Pow-hvm1.5H-12v | ||
+ Add device Tasmota Devices (SonOff, Shelly with Tasmota Firmware) | ||
+ Add device Steca Solarix PLI 5000 | ||
+ Bugfixes | ||
|
||
#### New: | ||
Add some Ehz Powermeter for IR Sensors with USB Cable | ||
### 2022-10-30 V1.1 | ||
|
||
### 2022-12-19 V1.2 | ||
Add Fronius Symo | ||
Add Fronius Primo | ||
Add Fronius Smartmeter | ||
Add Powmr Pow-hvm1.5H-12v | ||
Add Tasmota Devices (SonOff, Shelly with Tasmota Firmware) | ||
Add Steca Solarix PLI 5000 | ||
+ Add some Ehz Powermeter for IR Sensors with USB Cable | ||
+ Bugfixes | ||
### 2022-08-09 First release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.1.1 https://maven.apache.org/xsd/assembly-2.1.1.xsd"> | ||
<id>tar</id> | ||
<formats> | ||
<format>tar</format> | ||
</formats> | ||
<includeBaseDirectory>false</includeBaseDirectory> | ||
<fileSets> | ||
<fileSet> | ||
<directory>src/scripts</directory> | ||
<outputDirectory>solarreader</outputDirectory> | ||
<includes> | ||
<include>*.sh</include> | ||
</includes> | ||
<fileMode>0755</fileMode> | ||
<directoryMode>0755</directoryMode> | ||
</fileSet> | ||
<fileSet> | ||
<directory>target</directory> | ||
<outputDirectory>solarreader</outputDirectory> | ||
<includes> | ||
<include>solarreader.jar</include> | ||
</includes> | ||
<fileMode>0555</fileMode> | ||
</fileSet> | ||
</fileSets> | ||
</assembly> |
Oops, something went wrong.