Lighting up one pixel on a OLED

UKHeliBob:
Looking at the .h file for the library I see this function

 void setPixel(uint16_t poX, uint16_t poY,uint16_t color);

I did not look any further but it looks as though you can turn a single pixel on/off

Thanks but it doesn’t seem to work, im not a good programmer.
This is how I implemented it.

#include "MicroLCD.h"


void setPixel(uint8_t poX, uint8_t poY,uint8_t color);



void setup(){

Init everyting

}

void loop(){

setPixel(64, 15, 255)

}