10000 updating library link by jposada202020 · Pull Request #2 · CedarGroveStudios/CircuitPython_TemperatureTools · GitHub
[go: up one dir, main page]

Skip to content

updating library link #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 2 additions & 1 deletion cedargrove_temperaturetools/dew_point.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"""

__version__ = "0.0.0+auto.0"
__repo__ = "https://github.com/CedarGroveStudios/CircuitPython_AirQualityTools.git"
__repo__ = "https://github.com/CedarGroveStudios/CircuitPython_TemperatureTools.git"


# fmt: off
Expand All @@ -44,6 +44,7 @@

# fmt: on


# Dew Point converter (degrees Celsius)
def dew_point(deg_c, humidity, verbose=False):
"""Calculate dew point temperature from measured temperature (Celsius) and
Expand Down
2 changes: 1 addition & 1 deletion cedargrove_temperaturetools/heat_index.py
CED7
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"""

__version__ = "0.0.0+auto.0"
__repo__ = "https://github.com/CedarGroveStudios/CircuitPython_AirQualityTools.git"
__repo__ = "https://github.com/CedarGroveStudios/CircuitPython_TemperatureTools.git"


# Heat Index breakpoint list
Expand Down
2 changes: 1 addition & 1 deletion cedargrove_temperaturetools/unit_converters.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"""

__version__ = "0.0.0+auto.0"
__repo__ = "https://github.com/CedarGroveStudios/CircuitPython_AirQualityTools.git"
__repo__ = "https://github.com/CedarGroveStudios/CircuitPython_TemperatureTools.git"


def celsius_to_fahrenheit(deg_c):
Expand Down
0