1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- /*
- * main.c
- *
- * Copyright 2024 dh33ex <dh33ex@riseup.net>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
- * MA 02110-1301, USA or visit <http://www.gnu.org/licenses/>.
- *
- *
- */
- #include <msp430g2553.h>
- #include "hd44780_i2c_lcd.h"
- int main(void) {
- WDTCTL = WDTPW | WDTHOLD;
- /* use 1 MHz */
- if (CALBC1_1MHZ != 0xFF) {
- DCOCTL = 0;
- BCSCTL1 = CALBC1_1MHZ;
- DCOCTL = CALDCO_1MHZ;
- }
- HD44780 disp;
- disp.light = 1;
- disp.cursor = HD44780_BLINK_CURSOR;
- disp.address = 0x27;
- disp.rows = 2;
- disp.columns = 16;
- LCD_init(&disp);
- LCD_clear(&disp);
- LCD_write(&disp, "test");
- while (1) {
- __delay_cycles(1000000);
- LCD_write(&disp, ".");
- }
- return 0;
- }
|