Neomer / AVRC

C headers for AVR microcontrollers. Arduino must die!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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);
	}
}

About

C headers for AVR microcontrollers. Arduino must die!


Languages

Language:C 71.3%Language:C++ 22.2%Language:QMake 4.5%Language:Objective-C 1.9%