This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <avr/pgmspace.h> | |
| // ***** LCD ***** | |
| #include <LiquidCrystal.h> | |
| LiquidCrystal lcd(8, 9, 4, 5, 6, 7); | |
| char LCD_Row_1[17]; | |
| char LCD_Row_2[17]; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| # | |
| # Intel HEX file CRC recalculator | |
| # ihexcrc.py FILEWITHDAMAGEDCRC.HEX > NEWFILE.HEX | |
| # | |
| # See http://goodfet.sourceforge.net/dist/intelhex.py | |
| # for a more elaborate version | |
| # | |
| from binascii import hexlify, unhexlify | |
| import sys |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * hd44780 simulator | |
| * from | |
| * http://www.microchip.com/forums/m227487-print.aspx | |
| * 2/2007 by jbroadwell | |
| */ | |
| #define FIRST_NIBBLE 0 | |
| #define SECOND_NIBBLE 1 | |
| #define DDRAM_SIZE 128 | |
| typedef struct hd44780_n |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| step.c | |
| Program to verify new algorithm for linear acceleration. | |
| Author: Pramod Ranade <pramod.ranade@spjsystems.com> | |
| */ | |
| #include <stdio.h> | |
| #if defined(_WIN32) || defined(_WIN64) | |
| #include <io.h> | |
| #endif |
NewerOlder