COSA
An Object-Oriented Platform for Arduino Programming
|
#include "Cosa/Types.h"
Go to the source code of this file.
Classes | |
class | IOStream |
class | IOStream::Device |
Functions | |
IOStream & | bcd (IOStream &outs) |
IOStream & | bin (IOStream &outs) |
IOStream & | oct (IOStream &outs) |
IOStream & | dec (IOStream &outs) |
IOStream & | hex (IOStream &outs) |
IOStream & | tab (IOStream &outs) |
IOStream & | endl (IOStream &outs) |
IOStream & | ends (IOStream &outs) |
IOStream & | clear (IOStream &outs) |
IOStream & | flush (IOStream &outs) |
Copyright (C) 2012-2015, Mikael Patel
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
This file is part of the Arduino Che Cosa project.
Definition in file IOStream.hh.
Set current base to bcd for next operator print.
[in] | outs | stream. |
Definition at line 745 of file IOStream.hh.
Set current base to binary(2) for next operator print.
[in] | outs | stream. |
Definition at line 757 of file IOStream.hh.
Print form feed ''; new page/clear screen
[in] | outs | stream. |
Definition at line 841 of file IOStream.hh.
Set current base to deciaml(10) for next operator print.
[in] | outs | stream. |
Definition at line 781 of file IOStream.hh.
Print carriage-return-line-feed.
[in] | outs | stream. |
Definition at line 817 of file IOStream.hh.
Print end of string '\0'; null character
[in] | outs | stream. |
Definition at line 829 of file IOStream.hh.
Flush buffer to device.
[in] | outs | stream. |
Definition at line 853 of file IOStream.hh.
Set current base to hexadecimal(16) for next operator print.
[in] | outs | stream to set base. |
Definition at line 793 of file IOStream.hh.
Set current base to octal(8) for next operator print.
[in] | outs | stream. |
Definition at line 769 of file IOStream.hh.
Print horizontal tab ''.
[in] | outs | stream. |
Definition at line 805 of file IOStream.hh.