Number

Number accepts at least 4 arguments, followed by two optional arguments:

s 1 digit1,digit2,digit3,digit4

or

s 1 digit1,digit3,digit3,digit4,colon

or

s 1 digit1,digit3,digit3,digit4,colon,apostrophe

Both Colon and Apostrophe are either 0 for off, or 1 for on.

Digits are not numbers from 0 to 9. Each binary bit corresponds to an individual segment.

  • 1 = decimal point
  • 2 = middle segment
  • 4 = top left segment
  • 8 = bottom left segment
  • 16 = bottom segment
  • 32 = bottom right segment
  • 64 = top right segment
  • 128 = top segment

To form a digit like 7, for example, you would need the top segment, top right segment and bottom right segment: 128 + 64 + 32 = 224.

  • Display '777': s 1 224,224,224,0

To display a time on Number you will want to use the colon.

  • Display '22:22': s 1 218,218,218,218,1