-
Notifications
You must be signed in to change notification settings - Fork 4
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
Showing
7 changed files
with
142 additions
and
19 deletions.
There are no files selected for viewing
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,3 @@ | ||
*.gz | ||
*.tgz | ||
build/ |
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,8 @@ | ||
VERSION = $(shell cat VERSION) | ||
|
||
.PHONY: build | ||
build: | ||
docker build -t inosion/prometheus-sunspec-exporter:$(VERSION) . | ||
|
||
release: | ||
docker save inosion/prometheus-sunspec-exporter:$(VERSION) | gzip > inosion-prometheus-sunspec-exporter-$(VERSION).tgz |
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 @@ | ||
1.0.9 |
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,20 @@ | ||
# Known Working / Tested Devices | ||
|
||
Search (Sunspec Modbus Certified List)[https://sunspec.org/sunspec-modbus-certified-products/] for your device. | ||
|
||
Because Sunspec is a standard, the configuration required, for the exporter, will vary only: | ||
|
||
1. Which Modbus address the device listens on | ||
2. The `model_ids` you need from the device (don't need the serial number 6 times a minute :-) ) | ||
3. Any custom filterng required | ||
|
||
You won't need to map any data fields, the exporter does all that work. | ||
|
||
# Devices Working | ||
|
||
|--------------|----------------------------|--------------------------------------------------------|---------------| | ||
| Manufacturer | Model | Notes | Sample Config | | ||
|--------------|----------------------------|--------------------------------------------------------|---------------| | ||
| SMA | SunnyBoy TriPower STL-6000 | Address 126 (add 123 to the base SMA address) | | | ||
| | | Filter required for Amps at night; NaN map to Zero (0) | | | ||
| SunSpec | | Works out of the box (Fronius Modbus IS Sunspec) | | |
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