Skip to content
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
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