In the barometer app, as far as I can see you'd want to change MIN and MAX - maybe to -100 and +100: https://github.com/espruino/BangleApps/blob/master/apps/barometer/app.js#L6
Then instead of drawHand(Math.round(data.pressure)); you do drawHand(...); with a value between -100 and 100?
drawHand(Math.round(data.pressure));
drawHand(...);
@Gordon started
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
In the barometer app, as far as I can see you'd want to change MIN and MAX - maybe to -100 and +100: https://github.com/espruino/BangleApps/blob/master/apps/barometer/app.js#L6
Then instead of
drawHand(Math.round(data.pressure));
you dodrawHand(...);
with a value between -100 and 100?