Skip to content

Commit a34174d

Browse files
committed
fix math overflow
1 parent 15baed0 commit a34174d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/multimap_demo_big/multimap_demo_big.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ void setup()
3939
int16_t y = multiMap<uint16_t, int16_t>(i, in, out, 300);
4040
Serial.print(i);
4141
Serial.print("\t");
42-
Serial.println(y * 0.01); // 1 decimal
42+
Serial.println(y * 0.01);
4343
}
4444
}
4545

0 commit comments

Comments
 (0)