#pragma once

#include <filesystem>

class PWMPin
{
public:
    PWMPin(std::filesystem::path basedir);

    void set_period(uint64_t);
    void set_duty_cycle(uint64_t);

private:
    std::filesystem::path _basedir;
    bool _ok;
};
