NSData+CRC16.h 367 B

123456789101112131415161718192021
  1. //
  2. // NSData+CRC16.h
  3. // LipuWaterPurifier
  4. //
  5. // Created by leon on 2017/3/6.
  6. // Copyright © 2017年 Lipu. All rights reserved.
  7. //
  8. /**
  9. * http://stackoverflow.com/questions/15140699/nsdata-to-crc-16
  10. */
  11. #import <Foundation/Foundation.h>
  12. @interface NSData (CRC16)
  13. - (unsigned short)crc16Checksum;
  14. //十六进制转ASCII
  15. - (NSString *)yx_bluetoothString;
  16. @end