Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
PixelSource.h
- Committer:
- HarryChen
- Date:
- 2018-10-17
- Revision:
- 5:fa9eb887e9a6
- Parent:
- 1:6ae4383194a1
File content as of revision 5:fa9eb887e9a6:
#ifndef PIXELSOURCE_H #define PIXELSOURCE_H namespace GDE { class PixelSource { public: virtual void init() { count = 0; } virtual unsigned char nextPixelGroup() { return 0xff; } virtual bool hasNext() { return count < 640 * 384 / 8; } protected: int count; }; } #endif