Skip to content

Commit

Permalink
Changed: to increase temperature conversion range
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarlok2009 committed Feb 1, 2024
1 parent 85f6a0c commit 7910a8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ var cellSignalToBars = function cellSignalToBars(signal, signalType, quality, qu
var fromC = function fromC(c, tempConv, precision) {
var returnValue = null;

if (c <= 120 && c >= -50) {
if (c <= 120 && c >= -100) {
if (tempConv === 'f') {
returnValue = round(cToF(c), precision);
} else if (tempConv === 'c') {
Expand Down

0 comments on commit 7910a8b

Please sign in to comment.