-
Notifications
You must be signed in to change notification settings - Fork 94
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
881b0e8
commit e5b82e4
Showing
40 changed files
with
952 additions
and
455 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,11 @@ | ||
*Let op: Het DSMR-reader project is gefocused op het uitlezen van de slimme meter en om die data met jou op zoveel mogelijk manieren te delen. Het inlezen van andere (externe) data in DSMR-reader valt buiten de scope van dit project.* | ||
|
||
### Jouw omgeving | ||
*(Indien van toepassing)* | ||
* DSMR-reader versie *(rechtsbovenin applicatie zichtbaar)*: `v1.X.Y` | ||
* Hardware *(RaspberryPi 2, 3 of iets anders)*: `RaspberryPi X...` | ||
* DSMR-protocol versie van slimme meter *(v4 of v5)*: `v...` | ||
|
||
### Bug, wens of iets anders | ||
* Bijvoorbeeld stappen hoe een probleem te reproduceren is... | ||
* Of simpelweg een beschijving van een feature die je graag wenst te zien... |
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 @@ | ||
### Check | ||
|
||
- Make sure you are making a pull request against the `development` branch. Also you should start your branch off the `development` branch. |
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
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
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
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
25 changes: 25 additions & 0 deletions
25
dsmr_mqtt/migrations/0003_splittopicmeterstatisticsmqttsettings.py
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,25 @@ | ||
# Generated by Django 2.0.2 on 2018-03-13 19:40 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('dsmr_mqtt', '0002_daytotalsmqttsettings'), | ||
] | ||
|
||
operations = [ | ||
migrations.CreateModel( | ||
name='SplitTopicMeterStatisticsMQTTSettings', | ||
fields=[ | ||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), | ||
('enabled', models.BooleanField(default=False, help_text='Whether meter statistics are sent to the broker, having each field sent to a different topic.', verbose_name='Enabled')), | ||
('formatting', models.TextField(default='\n[mapping]\n# DATA = TOPIC PATH\ndsmr_version = dsmr/meter-stats/dsmr_version\nelectricity_tariff = dsmr/meter-stats/electricity_tariff\npower_failure_count = dsmr/meter-stats/power_failure_count\nlong_power_failure_count = dsmr/meter-stats/long_power_failure_count\nvoltage_sag_count_l1 = dsmr/meter-stats/voltage_sag_count_l1\nvoltage_sag_count_l2 = dsmr/meter-stats/voltage_sag_count_l2\nvoltage_sag_count_l3 = dsmr/meter-stats/voltage_sag_count_l3\nvoltage_swell_count_l1 = dsmr/meter-stats/voltage_swell_count_l1\nvoltage_swell_count_l2 = dsmr/meter-stats/voltage_swell_count_l2\nvoltage_swell_count_l3 = dsmr/meter-stats/voltage_swell_count_l3\nrejected_telegrams = dsmr/meter-stats/rejected_telegrams\n', help_text='Maps the field names to separate topics sent to the broker.', verbose_name='Formatting')), | ||
], | ||
options={ | ||
'verbose_name': 'MQTT: Meter Statistics (per split topic) configuration', | ||
'default_permissions': (), | ||
}, | ||
), | ||
] |
Oops, something went wrong.