Skip to content

Commit

Permalink
Changed: to increase the temperature conversion range requested by DS
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarlok2009 committed Feb 1, 2024
1 parent 8f87cb2 commit 85f6a0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ const cellSignalToBars = function cellSignalToBars(

const fromC = function fromC(c, tempConv, precision) {
let 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 85f6a0c

Please sign in to comment.