File: test-lcd.c

package info (click to toggle)
kuttypy 2.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 37,896 kB
  • sloc: python: 58,651; javascript: 14,686; xml: 5,767; ansic: 2,716; makefile: 453; asm: 254; sh: 48
file content (15 lines) | stat: -rw-r--r-- 212 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

#include <avr/kp.h>

int main()
{
lcd_init();
lcd_put_string("A ");
lcd_put_float(45.3, 1);
lcd_put_char(' ');
lcd_put_byte(255);
lcd_put_char(' ');
lcd_put_int(65534);
lcd_put_char(' ');
lcd_put_long(100000);
}