Skip to content
Merged
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
20 changes: 20 additions & 0 deletions sonic_platform_base/thermal_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,3 +92,23 @@ def get_low_critical_threshold(self):
up to nearest thousandth of one degree Celsius, e.g. 30.125
"""
raise NotImplementedError

def get_minimum_recorded(self):
"""
Retrieves the minimum recorded temperature of thermal

Returns:
A float number, the minimum recorded temperature of thermal in Celsius
up to nearest thousandth of one degree Celsius, e.g. 30.125
"""
raise NotImplementedError

def get_maximum_recorded(self):
"""
Retrieves the maximum recorded temperature of thermal

Returns:
A float number, the maximum recorded temperature of thermal in Celsius
up to nearest thousandth of one degree Celsius, e.g. 30.125
"""
raise NotImplementedError