Binary Code

Gray Code

This is also called unit distance code or reflected code. This coding system has a property that there is only one bit change between consecutive gray codes. The following table would show gray codes of decimal values.

Binary to gray conversion:

Starting from right to left

  1. If it is MSB then place it as it is
  2. Otherwise, Add the bit to the previous bit and place the sum in GRAY, ignoring any carry
  3. Repeat step 2 till end

Eg.  Convert 1011 to gray

Gray to Binary conversion:

Starting from right to left  

  1. If it is MSB then place it as it is
  2. Otherwise, Add the bit to the previous than corresponding bit of GRAY code and place the sum in GRAY, ignoring any carry
  3. Repeat step 2 till end

Eg.  Convert 1110 to gray

2 Replies to “Gray Code

Leave a Reply

Your email address will not be published. Required fields are marked *