Skip to content

Commit

Permalink
#55 add bus infor field to meta data
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-developer committed Dec 30, 2023
1 parent 7585503 commit 3fb71bc
Show file tree
Hide file tree
Showing 8 changed files with 63 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
dependencies.log
moduleinstalldebug.log
39 changes: 38 additions & 1 deletion allsky_boilerplate/allsky_boilerplate.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
5 changes: 4 additions & 1 deletion allsky_cloud/allsky_cloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,10 @@
}
}
},
"enabled": "false"
"enabled": "false",
"businfo": [
"i2c"
]
}

def getsign(d):
Expand Down
5 changes: 4 additions & 1 deletion allsky_dewheater/allsky_dewheater.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,10 @@
"changes": "Added Solo Cloudwatcher"
}
]
}
},
"businfo": [
"i2c"
]
}

def readSHT31(sht31heater):
Expand Down
5 changes: 4 additions & 1 deletion allsky_ina3221/allsky_ina3221.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
]
}


Expand Down
5 changes: 4 additions & 1 deletion allsky_light/allsky_light.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,10 @@
}
}
},
"enabled": "false"
"enabled": "false",
"businfo": [
"i2c"
]
}

def readTSL2591(params):
Expand Down
5 changes: 4 additions & 1 deletion allsky_ltr390/allsky_ltr390.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,10 @@
}
}
},
"enabled": "false"
"enabled": "false",
"businfo": [
"i2c"
]
}

def ltr390(params, event):
Expand Down
5 changes: 4 additions & 1 deletion allsky_mlx90640/allsky_mlx90640.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
]
}


Expand Down

0 comments on commit 3fb71bc

Please sign in to comment.