i2c_slave.h 543 B

123456789101112131415161718192021
  1. /* Library made by: g4lvanix
  2. * Github repository: https://github.com/g4lvanix/I2C-slave-lib
  3. Info: Inititate the library by giving the required address.
  4. Read or write to the necessary buffer according to the opperation.
  5. */
  6. #pragma once
  7. #define TX_BUFFER_SIZE 30
  8. #define RX_BUFFER_SIZE 30
  9. volatile uint8_t buffer_address;
  10. static volatile bool slave_has_register_set = false;
  11. volatile uint8_t txbuffer[TX_BUFFER_SIZE];
  12. volatile uint8_t rxbuffer[RX_BUFFER_SIZE];
  13. void i2c_init(uint8_t address);
  14. void i2c_stop(void);
  15. ISR(TWI_vect);