diff --git a/README.md b/README.md index b5ca287..64e79e4 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,14 @@ ## image2cpp ## +Use this tool online at http://javl.github.io/image2cpp/ + image2cpp is a simple tool to change images into byte arrays (or your array back into an image) for use with (monochrome) displays suchs as OLEDs, like those from Adafruit or Sparkfun. While searching for a way to generate these arrays, I mostly found links to a piece of Windows software. Both the flakey results and the hassle of having to boot a virtual machine just to convert an image lead to me writing this pure html + javascript solution. Alternatively you can also enter a byte array as input to turn it back into an image. This might be useful for debugging, or when you want to write the byte array yourself. I don't know. ### Running the tool ### You don't need any special dependencies / internet connection; all the necessary parts sit in a single .html file. So just open this index.html page in a (recent) browser to run the tool. -Or you can use the online version at: http://javl.github.io/image2cpp/ +Or you can use the online version at http://javl.github.io/image2cpp/ ### Example Arduino code ### You can find a simple Arduino example sketch [over here](https://github.com/javl/image2cpp/blob/master/oled_example/oled_example.ino) in the repository.