From 3fb71bc2fa1f6a3bdd9ca8d95fe50984a1eb6cf6 Mon Sep 17 00:00:00 2001 From: Alex Greenland Date: Sat, 30 Dec 2023 23:40:57 +0000 Subject: [PATCH] #55 add bus infor field to meta data --- .gitignore | 1 + allsky_boilerplate/allsky_boilerplate.py | 39 +++++++++++++++++++++++- allsky_cloud/allsky_cloud.py | 5 ++- allsky_dewheater/allsky_dewheater.py | 5 ++- allsky_ina3221/allsky_ina3221.py | 5 ++- allsky_light/allsky_light.py | 5 ++- allsky_ltr390/allsky_ltr390.py | 5 ++- allsky_mlx90640/allsky_mlx90640.py | 5 ++- 8 files changed, 63 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 61f17f1..24ce8ea 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ dependencies.log +moduleinstalldebug.log diff --git a/allsky_boilerplate/allsky_boilerplate.py b/allsky_boilerplate/allsky_boilerplate.py index 3a3a049..17bdd8b 100755 --- a/allsky_boilerplate/allsky_boilerplate.py +++ b/allsky_boilerplate/allsky_boilerplate.py @@ -103,7 +103,44 @@ "tab": "Another Tab" } }, - "enabled": "false" + "enabled": "false", + "changelog": { + "v1.0.0" : [ + { + "author": "Alex Greenland", + "authorurl": "https://github.com/allskyteam", + "changes": "Initial Release" + } + ], + "v1.0.1" : [ + { + "author": "Alex Greenland", + "authorurl": "https://github.com/Mr-Groch", + "changes": [ + "Change 1", + "Change 2" + ] + } + ], + "v1.0.2" : [ + { + "author": "Alex Greenland", + "authorurl": "https://github.com/allskyteam", + "changes": [ + "Change 1", + "Change 2" + ] + }, + { + "author": "Andreas Schminder", + "authorurl": "https://github.com/Adler6907", + "changes": "Change 1" + } + ] + }, + "businfo": [ + "i2c" + ] } def boilerplate(params, event): diff --git a/allsky_cloud/allsky_cloud.py b/allsky_cloud/allsky_cloud.py index 27c1629..d621e76 100755 --- a/allsky_cloud/allsky_cloud.py +++ b/allsky_cloud/allsky_cloud.py @@ -152,7 +152,10 @@ } } }, - "enabled": "false" + "enabled": "false", + "businfo": [ + "i2c" + ] } def getsign(d): diff --git a/allsky_dewheater/allsky_dewheater.py b/allsky_dewheater/allsky_dewheater.py index 69bd565..33d3fa1 100755 --- a/allsky_dewheater/allsky_dewheater.py +++ b/allsky_dewheater/allsky_dewheater.py @@ -265,7 +265,10 @@ "changes": "Added Solo Cloudwatcher" } ] - } + }, + "businfo": [ + "i2c" + ] } def readSHT31(sht31heater): diff --git a/allsky_ina3221/allsky_ina3221.py b/allsky_ina3221/allsky_ina3221.py index 3b33fc5..84b7506 100644 --- a/allsky_ina3221/allsky_ina3221.py +++ b/allsky_ina3221/allsky_ina3221.py @@ -73,7 +73,10 @@ "tab": "Extra Data", "help": "The name of the file to create with the voltage/current data for the overlay manager" } - } + }, + "businfo": [ + "i2c" + ] } diff --git a/allsky_light/allsky_light.py b/allsky_light/allsky_light.py index b1e69f2..e88c851 100755 --- a/allsky_light/allsky_light.py +++ b/allsky_light/allsky_light.py @@ -92,7 +92,10 @@ } } }, - "enabled": "false" + "enabled": "false", + "businfo": [ + "i2c" + ] } def readTSL2591(params): diff --git a/allsky_ltr390/allsky_ltr390.py b/allsky_ltr390/allsky_ltr390.py index f352fb2..2733cf0 100644 --- a/allsky_ltr390/allsky_ltr390.py +++ b/allsky_ltr390/allsky_ltr390.py @@ -64,7 +64,10 @@ } } }, - "enabled": "false" + "enabled": "false", + "businfo": [ + "i2c" + ] } def ltr390(params, event): diff --git a/allsky_mlx90640/allsky_mlx90640.py b/allsky_mlx90640/allsky_mlx90640.py index c4fd5a7..852b3df 100755 --- a/allsky_mlx90640/allsky_mlx90640.py +++ b/allsky_mlx90640/allsky_mlx90640.py @@ -43,7 +43,10 @@ "help": "The filename to save the image as. NOTE: Does not need the path. The image will be saved in the overlay images folder" } }, - "enabled": "false" + "enabled": "false", + "businfo": [ + "i2c" + ] }