SM130.h 330 B

12345678910111213141516171819
  1. #ifndef SM130_h
  2. #define SM130_h
  3. #include <Arduino.h>
  4. class SM130 {
  5. public:
  6. SM130();
  7. bool send_command(uint8_t cmd, const uint8_t *cmd_args, const uint8_t cmd_args_length, uint8_t *ret, uint8_t *length);
  8. bool read_response(uint8_t *ret, uint8_t *length, uint8_t *cmd);
  9. uint8_t rfid_read_sync();
  10. private:
  11. };
  12. #endif