aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDrNuget <drnuget@outlook.com>2025-11-02 16:23:45 +0200
committerDrNuget <drnuget@outlook.com>2025-11-02 16:23:45 +0200
commite8d88b9088464574f045e995327aca886913f33d (patch)
tree345ca4087b2a788263fb10d13fba1295dd4efd11
parentda2c159e7f249091933659babaae9eb6fe8adc89 (diff)
downloadbrailleboi-e8d88b9088464574f045e995327aca886913f33d.tar.gz
add README
-rw-r--r--README.md21
1 files changed, 21 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..3def5ff
--- /dev/null
+++ b/README.md
@@ -0,0 +1,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;
+}
+```