|
-
- #include <SdFat.h>
-
-
- ArduinoOutStream cout(Serial);
-
-
- void example(void) {
- const int max = 10;
- const int width = 4;
-
- for (int row = 1; row <= max; row++) {
- for (int col = 1; col <= max; col++) {
- cout << setw(width) << row * col << (col == max ? '\n' : ' ');
- }
- }
- cout << endl;
- }
-
-
-
- void showDate(int m, int d, int y) {
-
- if (y < 100) y += 2000;
-
-
- char old = cout.fill('0');
-
-
- cout << setw(2) << m << '/' << setw(2) << d << '/' << y << endl;
-
-
- cout.fill(old);
- }
-
- void setup(void) {
- Serial.begin(9600);
-
- while (!Serial) {}
- delay(2000);
-
- cout << endl << "default formatting" << endl;
- example();
-
- cout << showpos << "showpos" << endl;
- example();
-
- cout << hex << left << showbase << "hex left showbase" << endl;
- example();
-
- cout << internal << setfill('0') << uppercase;
- cout << "uppercase hex internal showbase fill('0')" <<endl;
- example();
-
-
- cout.flags(ios::dec | ios::right | ios::skipws);
- cout.fill(' ');
-
- cout << "showDate example" <<endl;
- showDate(7, 4, 11);
- showDate(12, 25, 11);
- }
- void loop(void) {}
|