Automatic Control and User Interface for Central Tire Inflation System

you do not have to buy that exact brand (bourns) the important thing, is to be multiturn and blue, with the metallic screw. they are common in EVERY electronics shop. bet you will find around your place.

if you want to go with the trimpot method, just follow these steps:

  • hook up pressure sensor gnd to arduino gnd (common gnd)

  • hook up arduino gnd and sensor 5 volt (here will come the pressure sensor output, after we done with the calibration) to the 2 side pins of the trimpot (doesn’t matter which is which side, but after this you should mark the gnd pin side on trimpot with a black marker)

  • set dmm to dc voltage measurement

  • digital multi meter (dmm) gnd goes to arduino gnd, and multimeter input to trimpot middle pin (called viper)

  • now turn the trimpot screw until you will get around 3.0v on the viper

  • hook up wiper to the arduino analog pin, and serial print the analog pin raw value to the display (in a new sketch, just for testing). now fine tune the trimpot until you get 1023 on the screen

  • map the arduino raw value to 0 - 5.0v, and serial print

  • now the voltage divider is calibrated, you can replace the 5v pin with the pressure sensor output

  • you should double check the values again with dmm on sensor output and gnd, compare with the voltage indicated by the arduino

  • probably, in your main sketch, you will need psi instead of voltage. so, you should map the raw values according to the pressure sensor datasheet (i do not know what sensor are you using)

  • that’s all

2 Likes