AVRC
Library for AVR microcontrollers' programming.
Classes helps you to write AVR microcontrollers' code on programmer-friendly laguage :)
All code wrote in .h headers files, so .HEX size has minimal difference with plain C-code. You can easly use this library with any other libraries.
Library grants easy access to:
- UART, SPI, hardware I2C (TWI), software I2C
- LED manipulations
- Bit mathematics
- IR NEC protocol
Supported devices:
- nRF24L01+
- DS1307
- DHT11
Currently in progress: ESP8266, BMP180, BMP280
#Code sample
int main()
{
led(DDRB, 0);
uart_init(UART_BAUD_8MHz_38400);
nrf24_init();
nrf24_config(sizeof(uint8_t), 2);
uint8_t b;
while (1)
{
led_turn_on(PORTB, 0);
nrf24_send_char('#');
led_turn_off(PORTB, 0);
}
}

Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.
