123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
-
-
- #include <stdlib.h>
- #include <stdio.h>
- #include <string.h>
- #include <math.h>
- #include "wiring.h"
-
- #include "Print.h"
-
-
-
-
- void Print::write(const char *str)
- {
- while (*str)
- write(*str++);
- }
-
-
- void Print::write(const uint8_t *buffer, size_t size)
- {
- while (size--)
- write(*buffer++);
- }
-
- void Print::print(const String &s)
- {
- for (int i = 0; i < s.length(); i++) {
- write(s[i]);
- }
- }
-
- void Print::print(const char str[])
- {
- write(str);
- }
-
- void Print::print(char c, int base)
- {
- print((long) c, base);
- }
-
- void Print::print(unsigned char b, int base)
- {
- print((unsigned long) b, base);
- }
-
- void Print::print(int n, int base)
- {
- print((long) n, base);
- }
-
- void Print::print(unsigned int n, int base)
- {
- print((unsigned long) n, base);
- }
-
- void Print::print(long n, int base)
- {
- if (base == 0) {
- write(n);
- } else if (base == 10) {
- if (n < 0) {
- print('-');
- n = -n;
- }
- printNumber(n, 10);
- } else {
- printNumber(n, base);
- }
- }
-
- void Print::print(unsigned long n, int base)
- {
- if (base == 0) write(n);
- else printNumber(n, base);
- }
-
- void Print::print(double n, int digits)
- {
- printFloat(n, digits);
- }
-
- void Print::println(void)
- {
- print('\r');
- print('\n');
- }
-
- void Print::println(const String &s)
- {
- print(s);
- println();
- }
-
- void Print::println(const char c[])
- {
- print(c);
- println();
- }
-
- void Print::println(char c, int base)
- {
- print(c, base);
- println();
- }
-
- void Print::println(unsigned char b, int base)
- {
- print(b, base);
- println();
- }
-
- void Print::println(int n, int base)
- {
- print(n, base);
- println();
- }
-
- void Print::println(unsigned int n, int base)
- {
- print(n, base);
- println();
- }
-
- void Print::println(long n, int base)
- {
- print(n, base);
- println();
- }
-
- void Print::println(unsigned long n, int base)
- {
- print(n, base);
- println();
- }
-
- void Print::println(double n, int digits)
- {
- print(n, digits);
- println();
- }
-
-
-
- void Print::printNumber(unsigned long n, uint8_t base)
- {
- unsigned char buf[8 * sizeof(long)];
- unsigned long i = 0;
-
- if (n == 0) {
- print('0');
- return;
- }
-
- while (n > 0) {
- buf[i++] = n % base;
- n /= base;
- }
-
- for (; i > 0; i--)
- print((char) (buf[i - 1] < 10 ?
- '0' + buf[i - 1] :
- 'A' + buf[i - 1] - 10));
- }
-
- void Print::printFloat(double number, uint8_t digits)
- {
-
- if (number < 0.0)
- {
- print('-');
- number = -number;
- }
-
-
- double rounding = 0.5;
- for (uint8_t i=0; i<digits; ++i)
- rounding /= 10.0;
-
- number += rounding;
-
-
- unsigned long int_part = (unsigned long)number;
- double remainder = number - (double)int_part;
- print(int_part);
-
-
- if (digits > 0)
- print(".");
-
-
- while (digits-- > 0)
- {
- remainder *= 10.0;
- int toPrint = int(remainder);
- print(toPrint);
- remainder -= toPrint;
- }
- }
|