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

RemoteFan.h « Fans « src - github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ca61f818935e68ec500f8cabb904df7eb3c6337a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
 * RemoteFan.h
 *
 *  Created on: 3 Sep 2019
 *      Author: David
 */

#ifndef SRC_FANS_REMOTEFAN_H_
#define SRC_FANS_REMOTEFAN_H_

#include "Fan.h"

#if SUPPORT_CAN_EXPANSION

#include "GCodes/GCodeResult.h"

class RemoteFan : public Fan
{
public:
	RemoteFan(unsigned int fanNum, CanAddress boardNum);
	~RemoteFan();

	bool Check() override;									// update the fan PWM returning true if it is a thermostatic fan that is on
	bool IsEnabled() const override;
	GCodeResult SetPwmFrequency(PwmFrequency freq, const StringRef& reply) override;
	int32_t GetRPM() override;
	GCodeResult ReportPortDetails(const StringRef& str) const override;
	void UpdateRpmFromRemote(CanAddress src, int32_t rpm) override;

	GCodeResult ConfigurePort(const char *pinNames, PwmFrequency freq, const StringRef& reply);

protected:
	bool UpdateFanConfiguration(const StringRef& reply) override;
	GCodeResult Refresh(const StringRef& reply) override;

private:
	static constexpr uint32_t RpmReadingTimeout = 2000;		// any reading older than this number of milliseconds is considered unreliable

	int32_t lastRpm;
	uint32_t whenLastRpmReceived;
	CanAddress boardNumber;
	bool thermostaticFanRunning;
};

#endif

#endif /* SRC_FANS_REMOTEFAN_H_ */