So i have a tachometer that I can communicated with via UART which gives me a character array of ascii values in the following form: Standard ascii 7 characters including decimal point such that the array when printed would equal the rpm value ie 2031.00 rpm = [ '2','0','3','1','.','0','0' ] I've been rummaging everywhere and can't find anything to tackle this. ...