1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-14 00:14:18 +00:00

BLOCKS SDK: New and updated version of juce_blocks_basics, adding functionality and compatibility with latest Dashboard-compatible firmware

This commit is contained in:
jules 2017-03-09 09:42:12 +00:00
parent beab10fca7
commit f207ebb6d8
19 changed files with 1302 additions and 566 deletions

View file

@ -32,14 +32,13 @@
/**
A simple Program to set the colours of individual LEDs.
*/
struct BitmapLEDProgram : public LEDGrid::Program
struct BitmapLEDProgram : public Block::Program
{
BitmapLEDProgram (LEDGrid&);
BitmapLEDProgram (Block&);
/** Set the colour of the LED at coordinates {x, y}. */
void setLED (uint32 x, uint32 y, LEDColour);
private:
juce::String getLittleFootProgram() override;
uint32 getHeapSize() override;
};