monochrome_draw 1.1.1 copy "monochrome_draw: ^1.1.1" to clipboard
monochrome_draw: ^1.1.1 copied to clipboard

Drawing on a monochromatic bitmap canvas.

Drawing on a monochromatic bitmap canvas.

example of using monochrome_draw package on an Akai Fire

A library of drawing routines for a monochromatic bitmap canvas, ported to Dart from the awesome oled-js by @noopkat.

The canvas is hardcoded to be monochromatic, hence each pixel is represented as a boolean value.

This library can be useful when using small, cheap monochromatic OLED displays.

It works well with the oled_font_57 package.

Example usage #

import 'package:monochrome_draw/draw.dart';


main() {

    final MonoCanvas oledBitmap = MonoCanvas(128, 64);

    oledBitmap.drawLine(5, 5, 50, 50, true);
}