Coder Social home page Coder Social logo

neomer / avrc Goto Github PK

View Code? Open in Web Editor NEW
9.0 2.0 2.0 14.54 MB

C headers for AVR microcontrollers. Arduino must die!

C++ 22.23% C 71.35% QMake 4.54% Objective-C 1.88%
avrc atmel-avr atmel-studio avr-microcontroller avr-programming avr-gcc avrdude nrf24l01 spi uart

avrc's Introduction

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

avrc's People

Contributors

neomer avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

avrc's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.