18Print &
endl(Print &printer);
19Print &
flush(Print &printer);
20Print &
hex(Print &printer);
21Print &
bin(Print &printer);
22Print &
dec(Print &printer);
33Print &
operator<<(Print &printer,
const __FlashStringHelper *s);
35Print &
operator<<(Print &printer,
const String &s);
37Print &
operator<<(Print &printer,
const char s[]);
39Print &
operator<<(Print &printer,
unsigned char c);
41Print &
operator<<(Print &printer,
unsigned int i);
44Print &
operator<<(Print &printer,
unsigned long i);
47Print &
operator<<(Print &printer,
const Printable &p);
105inline std::ostream &
operator<<(std::ostream &os, uint8_t u) {
108 return os << static_cast<unsigned short>(u);
111inline std::ostream &
operator<<(std::ostream &os,
112 const __FlashStringHelper *s) {
113 return os << reinterpret_cast<const char *>(s);
#define BEGIN_AH_NAMESPACE
Print & hex(Print &printer)
Print & bin(Print &printer)
Print & nouppercase(Print &printer)
Print & endl(Print &printer)
Print & uppercase(Print &printer)
Print & flush(Print &printer)
Print & showbase(Print &printer)
Print & manipulator(Print &)
Print & boolalpha(Print &printer)
Setbytesep setbytesep(char bytesep)
Print & leadingzeros(Print &printer)
Print & noshowbase(Print &printer)
Print & dec(Print &printer)
Print & noboolalpha(Print &printer)
Print & noleadingzeros(Print &printer)
Setbase setbase(uint8_t base)
Setprecision setprecision(int n)
Print & operator<<(Print &os, Quaternion e)
Printing.
HexDump(const uint8_t *data, size_t length)
HexDump(const uint8_t(&data)[N])