Skip to content

Commit d03f926

Browse files
committed
Update for Arduino Library 1.5+.
1 parent 2754f87 commit d03f926

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

library.properties

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
name=PacketSerial
2+
version=1.0
3+
author=Christopher Baker <[email protected]>
4+
maintainer=Christopher Baker <[email protected]>
5+
sentence=A small, efficient library for sending serial data packets.
6+
paragraph=PacketSerial is an small, efficient, library that allows Arduinos to send and receive serial data packets that include bytes with any value (0-255). A packet is simply an array of bytes.
7+
url=https://github.com/bakercp/PacketSerial
8+
architectures=avr
File renamed without changes.

PacketSerial.h renamed to src/PacketSerial.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626

2727

2828

29-
#include "Arduino.h"
30-
#include "COBS.h"
29+
#include <Arduino.h>
30+
#include "Encoding/COBS.h"
3131

3232

3333
template<typename EncoderType, uint8_t PacketMarker = 0, int BufferSize = 256>

0 commit comments

Comments
 (0)