| 1234567891011121314151617181920212223242526272829 | 
							- #pragma once
 - 
 - 
 - #include "Boiler.h"
 - 
 - class Helpers
 - {
 - public:
 -     static void tempToStr(
 -             char* out
 -             , temp_t temp
 -             , signed char width
 -     );
 - 
 -     static void fillLine(
 -             char* line
 -             , int length
 -             , char c
 -     );
 - 
 -     static void center(
 -             char* line
 -             , const char* text
 -             , int length
 -             , char c
 -     );
 - };
 - 
 
 
  |