Welcome to mirror list, hosted at ThFree Co, Russian Federation.

DotStarLed.h « Fans « src - github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 902918ec38081df7ce43a7065c0bdafb2e192ff2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * DotStarLed.h
 *
 *  Created on: 18 Jul 2018
 *      Author: David
 */

#ifndef SRC_FANS_DOTSTARLED_H_
#define SRC_FANS_DOTSTARLED_H_

#include "RepRapFirmware.h"
#include "GCodes/GCodeResult.h"

class GCodeBuffer;

namespace DotStarLed
{
	void Init();
	GCodeResult SetColours(GCodeBuffer& gb, const StringRef& reply);
};

#endif /* SRC_FANS_DOTSTARLED_H_ */