2019-01-08 10:38:38 +00:00
|
|
|
# Téléinfo Linky avec un Raspberry Pi
|
|
|
|
Surveiller sa consommation électrique en temps réel avec un compteur Linky et un Raspberry
|
2019-02-13 22:42:59 +00:00
|
|
|
|
2023-01-08 15:22:11 +00:00
|
|
|
Forké de https://github.com/SebastienReuiller/teleinfo-linky-with-raspberry
|
2023-01-08 15:35:31 +00:00
|
|
|
* Traitement binaire du flux de données et mode STANDARD inspiré de https://github.com/babs/teleinfo2influx
|
2023-01-08 15:22:11 +00:00
|
|
|
* Ajout d'un fichier de configuration externe
|
2023-01-08 15:27:32 +00:00
|
|
|
* Ajout d'un délai optionnel entre la transmission de deux trames
|
|
|
|
|
2023-01-08 15:30:19 +00:00
|
|
|
## Installation
|
|
|
|
```
|
|
|
|
cd /opt
|
|
|
|
git clone https://git.garbaye.fr/gitouche/teleinfo-linky-with-raspberry.git
|
|
|
|
```
|
2023-01-08 15:27:32 +00:00
|
|
|
## Configuration
|
|
|
|
Créer et modifier le fichier de configuration :
|
|
|
|
```
|
2023-01-09 20:12:02 +00:00
|
|
|
cd /opt/teleinfo-linky-with-raspberry
|
2023-01-08 15:27:32 +00:00
|
|
|
cp settings-example.py settings.py
|
|
|
|
vi settings.py
|
|
|
|
```
|
2023-01-09 20:12:02 +00:00
|
|
|
Ajuster l'unit systemd si besoin :
|
2023-01-08 15:27:32 +00:00
|
|
|
```
|
|
|
|
vi teleinfo.service
|
|
|
|
```
|
|
|
|
Perréniser :
|
|
|
|
```
|
2023-01-09 20:12:02 +00:00
|
|
|
cp teleinfo.service /usr/lib/systemd/system/teleinfo.service
|
|
|
|
systemctl start teleinfo.service
|
2023-01-08 15:27:32 +00:00
|
|
|
systemctl enable teleinfo.service
|
|
|
|
```
|