# attiny13-software-uart-library **Repository Path**: armxu/attiny13-software-uart-library ## Basic Information - **Project Name**: attiny13-software-uart-library - **Description**: No description available - **Primary Language**: Unknown - **License**: BSD-2-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-03-22 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # attiny13-software-uart-library ATtiny13 Software UART library. More info here - http://blog.podkalicki.com/attiny13-software-uart-debug-logger/ ## Example code ```c /** * Copyright (c) 2017, Ɓukasz Marcin Podkalicki * Serial Parrot - example of Software UART. */ #include #include #include #include "uart.h" int main(void) { char c; uart_puts("Hello Parrot!\n"); while (1) { c = uart_getc(); uart_putc(c); } } ```