You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When submitting a new issue, please supply the following information:
Platform: Place your platform here... give us your web browser/Electron version and your hardware (Raspberry Pi 2/3, Windows, Mac, Linux, System V UNIX).
Raspberry Pi 3B
Node Version: Make sure it's version 0.12.13 or later.
v9.11.2
MagicMirror Version: Now that the versions have split, tell us if you are using the PHP version (v1) or the newer JavaScript version (v2).
v2.4.1
Description: Provide a detailed description about the issue and include specific details to help us understand the problem. Adding screenshots will help describing the problem.
weatherforecast is rounding rain before it converts it into imperial. So, if the real rainfall is 1.34 the code is turning that into "1" and then performing the calculation to imperial against 1 and not 1.34
Steps to Reproduce: List the step by step process to reproduce the issue.
setup your config to have units: "imperial" in the main config section.
setup your config to have showRainAmount:true in the weatherforecast module.
Expected Results: Describe what you expected to see.
Rainfall amounts should vary day to day.
Actual Results: Describe what you actually saw.
Often many days have the same rainfall amounts.
Configuration: What does the used config.js file look like? Don't forget to remove any sensitive information!
var config = {
Additional Notes: Provide any other relevant notes not previously mentioned. This is optional.
Code in weatherforecast.js line 353 : rain: this.roundValue(forecast.rain)
That is rounding the value before it does the calculation to convert into imperial.
The text was updated successfully, but these errors were encountered:
Please only submit reproducible issues.
If you're not sure if it's a real bug or if it's just you, please open a topic on the forum: https://forum.magicmirror.builders/category/15/bug-hunt
Problems installing or configuring your MagicMirror? Check out: https://forum.magicmirror.builders/category/10/troubleshooting
When submitting a new issue, please supply the following information:
Platform: Place your platform here... give us your web browser/Electron version and your hardware (Raspberry Pi 2/3, Windows, Mac, Linux, System V UNIX).
Raspberry Pi 3B
Node Version: Make sure it's version 0.12.13 or later.
v9.11.2
MagicMirror Version: Now that the versions have split, tell us if you are using the PHP version (v1) or the newer JavaScript version (v2).
v2.4.1
Description: Provide a detailed description about the issue and include specific details to help us understand the problem. Adding screenshots will help describing the problem.
weatherforecast is rounding rain before it converts it into imperial. So, if the real rainfall is 1.34 the code is turning that into "1" and then performing the calculation to imperial against 1 and not 1.34
Steps to Reproduce: List the step by step process to reproduce the issue.
setup your config to have units: "imperial" in the main config section.
setup your config to have showRainAmount:true in the weatherforecast module.
Expected Results: Describe what you expected to see.
Rainfall amounts should vary day to day.
Actual Results: Describe what you actually saw.
Often many days have the same rainfall amounts.
Configuration: What does the used config.js file look like? Don't forget to remove any sensitive information!
var config = {
Additional Notes: Provide any other relevant notes not previously mentioned. This is optional.
Code in weatherforecast.js line 353 : rain: this.roundValue(forecast.rain)
That is rounding the value before it does the calculation to convert into imperial.
The text was updated successfully, but these errors were encountered: