Adding printf

This days i used a lot the Okio aproach for printf, and its working great!
I removed the streamObj define, and instead used a user defined object each time.

#define _PRINTF_BUFFER_LENGTH_  64

#if 1
static char _pf_buffer_[_PRINTF_BUFFER_LENGTH_];
#else
extern char _pf_buffer_[_PRINTF_BUFFER_LENGTH_];
#endif

#define printf(_obj_,a,...)                                                   \
  do{                                                                   \
    snprintf(_pf_buffer_, sizeof(_pf_buffer_), a, ##__VA_ARGS__);       \
    _obj_.print(_pf_buffer_);                                    \
  }while(0)

#define printfn(_obj_,a,...)                                                  \
  do{                                                                   \
    snprintf(_pf_buffer_, sizeof(_pf_buffer_), a"\r\n", ##__VA_ARGS__); \
    _obj_.print(_pf_buffer_);                                    \
  }while(0)

So now i can do:

printf(Serial, "%s", "Print to Serial");
printf(tft, "%s", "Print to TFT");

This simple modification allows to print on any stream object, not just one.