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.
DemoPixelSource.h
- Committer:
- HarryChen
- Date:
- 2018-10-15
- Revision:
- 1:6ae4383194a1
- Child:
- 4:a038b8b2ee11
File content as of revision 1:6ae4383194a1:
#ifndef DEMOPIXELSOURCE_H
#define DEMOPIXELSOURCE_H
#include "PixelSource.h"
namespace GDE {
class DemoPixelSource: public PixelSource {
public:
virtual unsigned char nextPixelGroup() {
return (count++ & 1) ? 0xff : 0x00;
}
};
}
#endif
