One minor addition, that could improve your data cleaning postprocess: check out tesseract tsv and hocr output formats for obtaining some indicative confidence numbers for each digit ocr'ed from your image (iirc there's an issue with vanilla tesseract, hence the advice to check both formats: iirc one of them reports char level confidence numbers while the other doesn't: score values of -1 :'-( )
I don't know how often you process that meter display or how fast your meter is running, but knowing that this thing can only count up also would aid data cleaning / smoothing when you have processed multiple images.
Tesseract may get confused with those last two digits (they rotate up and don't snap in place like the others), including the chance that no digit at all will be recognized at either spot, so ocr output validation, alignment (with previous samples) and/or obscuring the last two digits in the OCR input image are all options to consider for your particular input data stream. Here those per char confidence numbers may also assist (plus you can get char position-in-image coordinates from tesseract!) in your bespoke data postprocessing.