def _test_decode_bolus( ):
"""
## correct
>>> parse_date( bytearray( _bewest_dates['page-19'][6] ) ).isoformat( )
'2012-11-12T00:55:42'
## correct
>>> parse_date( bytearray( _bewest_dates['page-19'][0] ) ).isoformat( )
'2012-11-12T00:55:42'
## this is wrong
>>> parse_date( bytearray( _bewest_dates['page-19'][1] ) ).isoformat( )
'2012-04-10T12:12:00'
## day,month is wrong, time H:M:S is correct
# expected:
>>> parse_date( bytearray( _bewest_dates['page-19'][2] ) ).isoformat( )
'2012-02-08T03:11:12'
## correct
>>> parse_date( bytearray( _bewest_dates['page-19'][3] ) ).isoformat( )
'2012-11-12T08:03:11'
#### not a valid date
# >>> parse_date( bytearray( _bewest_dates['page-19'][4] ) ).isoformat( )
## correct
>>> parse_date( bytearray( _bewest_dates['page-19'][5] ) ).isoformat( )
'2012-11-12T08:03:13'
"""
"""
0x5b 0x7e # bolus wizard,
0xaa 0xf7 0x00 0x0c 0x0c # page-19[0]
0x0f 0x50 0x0d 0x2d 0x6a 0x00 0x0b 0x00
0x00 0x07 0x00 0x0b 0x7d 0x5c 0x08 0x58
0x97 0x04 0x30 0x05 0x14 0x34 0xc8
0x91 0xf8 # 0x91, 0xf8 = month=11, minute=56, seconds=17!
0x00 # general parsing fails here
0x00
0xaa 0xf7 0x40 0x0c 0x0c # expected - page-19[6]
0x0a 0x0c
0x8b 0xc3 0x28 0x0c 0x8c # page-19[3]
0x5b 0x0c
0x8d 0xc3 0x08 0x0c 0x0c # page-19[5]
0x00 0x51 0x0d 0x2d 0x6a 0x1f 0x00 0x00 0x00 0x00 0x00
"""
### csv deconstructed
评论列表
文章目录