add more projects

This commit is contained in:
2021-08-05 13:24:20 +09:00
parent 20c4a0fa7f
commit b52e63903a
12 changed files with 966 additions and 0 deletions

8
crc16_test/crc16.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef CRC16_h
#define CRC16_h
#include "Arduino.h"
unsigned int crc (byte* nData, unsigned int nLength);
#endif