mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-10 03:38:34 +00:00
11 lines
204 B
C++
11 lines
204 B
C++
#ifndef DAC084S085_H
|
|
#define DAC084S085_H
|
|
|
|
class dac084s085 {
|
|
public:
|
|
dac084s085();
|
|
static void begin(void);
|
|
static void setValue(uint8_t channel, uint8_t value);
|
|
};
|
|
|
|
#endif // DAC084S085_H
|