Skip to content
Snippets Groups Projects
Select Git revision
  • 26b6840dbfe1ab0131b79dee39d1e9e85bc3d15b
  • master default protected
2 results

.magic_ssh_config

Blame
  • spisender.h 277 B
    #ifndef SPISENDER_H
    #define SPISENDER_H
    
    #include "spiframe.h"
    
    class SpiSender
    {
    private:
        int readyPin;
    
    public:
        SpiSender(int readyPin);
        int getReadyPin() const;
        bool sendFrame(const SpiFrame& frame) const;
        bool canSend() const;
    };
    
    #endif // SPISENDER_H