Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
5ec5178
Create temperatureSensorTest.py
Luthiraa Sep 30, 2024
a0b12ae
Update temperatureSensor with related libraries (WIP)
Luthiraa Oct 19, 2024
ce0f222
Refactor temperatureSensor initialization and remove temperature offset
Luthiraa Oct 19, 2024
8f9dd0f
Remove unnecessary dependencies and unused code, simpler/streamlined …
Luthiraa Oct 26, 2024
2e76876
Merge branch 'AccelerationConsortium:main' into temp
Luthiraa Oct 26, 2024
91983eb
Add initial files for temperature sensor integration and unique ID ge…
Luthiraa Nov 28, 2024
761ef05
Merge branch 'temp' of https://github.com/Luthiraa/ac-training-lab in…
Luthiraa Nov 28, 2024
986809c
Merge branch 'Luthiraa-temp'
Luthiraa Dec 8, 2024
374b4ed
Add BME680 sensor constants and configuration files
Luthiraa Dec 8, 2024
59812a1
Merge branch 'main' of https://github.com/Luthiraa/ac-training-lab
Luthiraa Dec 8, 2024
da5d4ac
Remove deprecated sensor libraries and example scripts
Luthiraa Mar 12, 2025
b9e1da4
Add pre-commit configuration for code quality checks
Luthiraa Mar 12, 2025
a8c6a8e
Refactor code by removing unnecessary blank lines and improving forma…
Luthiraa Mar 12, 2025
e2569c3
Fix end-of-file issues
Luthiraa Mar 12, 2025
c40470a
Fix trailing whitespace issues
Luthiraa Mar 12, 2025
c7186fa
Apply black formatting
Luthiraa Mar 12, 2025
8ad3068
Fix flake8 and isort errors in mqtt_as.py and netman.py
Luthiraa Mar 12, 2025
af6fd50
Remove unused files and configurations from tempSensor directory
Luthiraa Mar 12, 2025
3c1855c
Add initial implementation of MQTT client and WiFi connection utility…
Luthiraa Mar 12, 2025
3f7194b
No code changes made; skipping commit.
Luthiraa Mar 12, 2025
10be480
Remove unused files and configurations from tempSensor directory
Luthiraa Mar 22, 2025
79bf3f8
Refactor tempSensor main.py to use mqtt_as for MQTT connection and ad…
Luthiraa Mar 25, 2025
9a2fbe4
Apply pre-commit formatting fixes
Luthiraa Mar 25, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
# serve to show the default.

import os
import sys
import shutil
import sys

# -- Path setup --------------------------------------------------------------

Expand Down
1 change: 1 addition & 0 deletions scripts/tempSensor/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
my_secrets.py
Binary file added scripts/tempSensor/hivemq-com-chain.der
Binary file not shown.
21 changes: 21 additions & 0 deletions scripts/tempSensor/lib/LICENSE_bme680.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2018 Pimoroni Ltd

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Loading