temperature-16x16-bw

xod/graphics/temperature-16x16-bw

The "Temperature" black and white icon. 16x16 pixels.
temperature-16x16-bw
@/temperature-16x16-bw
The "Temperature" black and white icon. 16x16 pixels.
temperature-16x16-bw
BMP
BMP@/bitmap

C++ implementation

nodespace {
    static const unsigned char icon[] PROGMEM = {

    0b00000001, 0b11000000, //        ###
    0b00000011, 0b11100000, //       #####
    0b00000111, 0b00100000, //      ###  #
    0b00000111, 0b11100000, //      ######
    0b00000111, 0b00100000, //      ###  #
    0b00000111, 0b11100000, //      ######
    0b00000111, 0b00100000, //      ###  #
    0b00000111, 0b11100000, //      ######
    0b00000111, 0b00100000, //      ###  #
    0b00001111, 0b11110000, //     ########
    0b00011111, 0b11111000, //    ##########
    0b00011111, 0b11111000, //    ##########
    0b00011111, 0b11111000, //    ##########
    0b00011111, 0b11111000, //    ##########
    0b00001111, 0b11110000, //     ########
    0b00000111, 0b11100000, //      ######

    };
}
node {
    Bitmap myBitmap = Bitmap(icon, 0, 16, 16);

    void evaluate(Context ctx) {
        emitValue<output_BMP>(ctx, &myBitmap);
    }
}