Skip to main content
added 6 characters in body
Source Link
Nouman
  • 217
  • 4
  • 13

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?

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?

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?

Fixed syntax highlighting, sentance spacing.
Source Link
VE7JRO
  • 2.5k
  • 19
  • 28
  • 31

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
};
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 Is this possible? Are there any alternatives for this?

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?

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?

added 54 characters in body
Source Link
Nouman
  • 217
  • 4
  • 13

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. IsSo, the fourth row will become B00110 from B00010.Is this possible? Are there any alternatives for this?

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. Is this possible? Are there any alternatives for this?

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?

Source Link
Nouman
  • 217
  • 4
  • 13
Loading