Skip to content

Instantly share code, notes, and snippets.

@Trionium
Trionium / lcd-project-4.c
Created January 27, 2020 19:08
LCD project that writing to lcd display with 2 buttons.
/*
* File: main.c
* Author: Trion Projects
*
* Created on January 27, 2020, 9:59 PM
*/
#include "config.h"
void main(void) {
@Trionium
Trionium / lcd-project-3.c
Last active January 27, 2020 19:31
LCD project that writes variable integer numbers to display.
/*
* File: main.c
* Author: Trion Projects
*
* Created on January 19, 2020, 4:22 PM
*/
#include "config.h"
void main(void) {
@Trionium
Trionium / lcd-project-config.h
Last active January 27, 2020 19:32
Configuration file for LCD projects using PIC16F628A microcontroller.
/*
* File: config.h
* Author: Trion Projects
* Comments:
* Revision history: v1.0
*/
#ifndef CONFIG
#define CONFIG
@Trionium
Trionium / lcd-project-2.c
Last active January 27, 2020 19:33
LCD project that writes strings to display, shifting and toggling display.
/*
* File: main.c
* Author: Trion Projects
*
* Created on January 19, 2020, 4:22 PM
*/
#include "config.h"
void main(void) {
@Trionium
Trionium / lcd-project-1.c
Last active January 23, 2020 15:09
Writing strings to LCD with PIC microcontroller.
/*
* File: main.c
* Author: Trion Projects
*
* Created on January 19, 2020, 4:22 PM
*/
#include "config.h"
void main(void) {