fill in the commands belllow if you wanted to map a value saved in the variable count from one tange to another

To map a value saved in the variable count from one range to another in BASIC, you can use the following commands:

new_value = (count - old_min) * (new_max - new_min) / (old_max - old_min) + new_min

In this formula, old_min and old_max represent the minimum and maximum values of the original range, while new_min and new_max represent the minimum and maximum values of the desired range. The result will be stored in the variable new_value.

Please note that this is a general formula and may need to be adapted to your specific use case. Make sure to replace count, old_min, old_max, new_min, and new_max with the appropriate values for your scenario.

[[SOURCE 3]]