I have created a byte for 16x2 LCD. It is basically a custom character which I will have to change later.
byte char[8]{
B10000,
B01000,
B00100,
B00010,
B00001,
B11000,
B11100
};
I want to edit the third number from fourth row. So, the fourth row will become B00110 from B00010. Is this possible? Are there any alternatives for this?