wifi-16x16-bw

xod/graphics/wifi-16x16-bw

The "Wi-Fi" black and white icon. 16x16 pixels.
wifi-16x16-bw
@/wifi-16x16-bw
The "Wi-Fi" black and white icon. 16x16 pixels.
wifi-16x16-bw
BMP
BMP@/bitmap

C++ implementation

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

    0b00000000, 0b00000000, //
    0b00000111, 0b11100000, //      ######
    0b00011111, 0b11111000, //    ##########
    0b00111111, 0b11111100, //   ############
    0b01110000, 0b00001110, //  ###        ###
    0b01100111, 0b11100110, //  ##  ######  ##
    0b00001111, 0b11110000, //     ########
    0b00011000, 0b00011000, //    ##      ##
    0b00000011, 0b11000000, //       ####
    0b00000111, 0b11100000, //      ######
    0b00000100, 0b00100000, //      #    #
    0b00000001, 0b10000000, //        ##
    0b00000001, 0b10000000, //        ##
    0b00000000, 0b00000000, //
    0b00000000, 0b00000000, //
    0b00000000, 0b00000000, //

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

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