This repository was archived by the owner on Mar 29, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +43
-1
lines changed Expand file tree Collapse file tree 2 files changed +43
-1
lines changed Original file line number Diff line number Diff line change
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
6
+ and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
+
8
+ ## [ Unreleased]
9
+
10
+ ### Changed
11
+
12
+ - Changelog typo
13
+
14
+ ## [ 1.0.0] - 2024-08-23
15
+
16
+ ### Added
17
+
18
+ - Created the project changelog.
19
+ - Created unit tests
20
+ - Added module docstring
21
+ - Added method docstring
22
+ - Added badges
23
+ - Get temperature, pressure, humidity from OpenWeatherMapAPI
24
+ - Get temperature, pressure, humidity from BME280 sensor
25
+ - Calculate the dew point for current readings
26
+ - Check csv file exists
27
+ - Creates missing csv file and creates headers
28
+ - Appends current readings to the csv file
29
+ - No API key assumes using BME280 sensor with defaults
30
+
31
+ ### Changed
32
+
33
+ - Variables are passed as cli arguments
34
+ - Updated the project readme
35
+
36
+ ### Removed
37
+
38
+ - Removed hard coded variables
39
+
40
+ [ unreleased ] : https://github.com/joe-mccarthy/environment-checker/compare/v1.1.1...HEAD
41
+ [ 1.0.0 ] : https://github.com/joe-mccarthy/environment-checker/releases/tag/v0.0.1
Original file line number Diff line number Diff line change 1
1
# Environment Checker
2
2
3
3
![ GitHub Actions Workflow Status] ( https://img.shields.io/github/actions/workflow/status/joe-mccarthy/environment-checker/build-test.yml?style=for-the-badge )
4
- ![ Coveralls] ( https://img.shields.io/coverallsCoverage/github/joe-mccarthy/environment-checker?style=for-the-badge )
4
+ ![ Coveralls] ( https://img.shields.io/coverallsCoverage/github/joe-mccarthy/environment-checker?style=for-the-badge )
5
5
[ ![ Python 3.8] ( https://img.shields.io/badge/python-3.8-blue.svg?style=for-the-badge )] ( https://www.python.org/downloads/release/python-380/ )
6
+ ![ GitHub Release] ( https://img.shields.io/github/v/release/joe-mccarthy/environment-checker?sort=semver&style=for-the-badge )
6
7
![ GitHub License] ( https://img.shields.io/github/license/joe-mccarthy/environment-checker?style=for-the-badge )
7
8
8
9
Simple script that's called from a cron job that will take a reading from a bme 280 sensor or open weather api and record the result in a csv file with the calculated dew point.
You can’t perform that action at this time.
0 commit comments