Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Arduino library to transfer dynamic, packetized data fast and reliably via Serial, I2C, etc.

License

NotificationsYou must be signed in to change notification settings

PowerBroker2/SerialTransfer

Repository files navigation

SerialTransfer

GitHub versionarduino-library-badge

SerialTransfer is an easy to use Arduino library for transferring packetized data fast and reliably viaSerial, I2C, and SPI interfaces. Interconnect your Arduinos today minus the headache with SerialTransfer!

A mirror library is also available for Python!

This library:

  • can be downloaded via the Arduino IDE's Libraries Manager (search "SerialTransfer.h")
  • works with "software-serial", "software-I2C", and "software-SPI" libraries
  • is non blocking
  • uses packet delimiters
  • uses consistent overhead byte stuffing
  • uses CRC-8 (Polynomial 0x9B with lookup table)
  • allows the use of dynamically sized packets (packets can have payload lengths anywhere from 1 to 254 bytes)
  • supports user-specified callback functions
  • can transfer bytes, ints, floats, structs, even large files like JPEGs and CSVs!!

Packet Anatomy:

01111110 00000000 11111111 00000000 00000000 00000000 ... 00000000 10000001|      | |      | |      | |      | |      | |      | | | |      | |______|__Stop byte|      | |      | |      | |      | |      | |      | | | |______|___________8-bit CRC|      | |      | |      | |      | |      | |      | |_|____________________Rest of payload|      | |      | |      | |      | |      | |______|________________________2nd payload byte|      | |      | |      | |      | |______|_________________________________1st payload byte|      | |      | |      | |______|__________________________________________# of payload bytes|      | |      | |______|___________________________________________________COBS Overhead byte|      | |______|____________________________________________________________Packet ID (0 by default)|______|_____________________________________________________________________Start byte (constant)

How To Use:

See theexample sketches

  • datum = tx/rx a single object
  • data = tx/rx multiple objects

NOTE:

SPITransfer.h and it's associated features are not supported for the Arduino Nano 33 BLE or DUE and other boards. This header file is disabled by default, but can be enabled by commenting out#define DISABLE_SPI_SERIALTRANSFER 1 withinSerialTransfer.h.


[8]ページ先頭

©2009-2025 Movatter.jp