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: d27a55f8f289807a8f6f71663113ffd14df44a83 (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() noexcept;
	GCodeResult SetColours(GCodeBuffer& gb, const StringRef& reply);
};

#endif /* SRC_FANS_DOTSTARLED_H_ */