Numeric Messages now work
This commit is contained in:
parent
5a52424550
commit
3affbfecd4
1 changed files with 2 additions and 2 deletions
|
@ -177,8 +177,8 @@ def encodeASCII(initial_offset, text, buff):
|
||||||
# Char Translationtable
|
# Char Translationtable
|
||||||
mirrorTab = [0x00, 0x08, 0x04, 0x0c, 0x02, 0x0a, 0x06, 0x0e, 0x01, 0x09]
|
mirrorTab = [0x00, 0x08, 0x04, 0x0c, 0x02, 0x0a, 0x06, 0x0e, 0x01, 0x09]
|
||||||
def encodeDigit(ch):
|
def encodeDigit(ch):
|
||||||
if ch >= '0' and ch <= '9':
|
if ord(ch) >= ord('0') and ord(ch) <= ord('9'):
|
||||||
return mirrorTab[ch - '0']
|
return mirrorTab[ord(ch) - ord('0')]
|
||||||
elif ch == ' ':
|
elif ch == ' ':
|
||||||
return 0x03
|
return 0x03
|
||||||
elif ch == 'u' or ch == 'U':
|
elif ch == 'u' or ch == 'U':
|
||||||
|
|
Loading…
Add table
Reference in a new issue