aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 3def5ff69b47444d8fcdf4c2b4ce0586ab8da864 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Brailleboi - the best braille image plotting library written in C
---
## Current list of features:
- Variable size image buffer
- X,Y plotting of dots
## Example code:
```
#include "src/brailleboi.h"

int main()
{
	image_buffer buf;
	brailleInit(200, 200, &buf);
	for (int i=0;i<buf.width;i++) {
		braillePlot(i, i, &buf);
	}
	brailleUpdateScreen(&buf);
	brailleStop(&buf);
	return 0;
}
```