pySerialTransfer icon indicating copy to clipboard operation
pySerialTransfer copied to clipboard

Python package to transfer data in a fast, reliable, and packetized form

Results 16 pySerialTransfer issues
Sort by recently updated
recently updated
newest added

for example, if I send a list [255,250,100] to arduino and how to put list items in separate variables or use list items directly?

bytes() is its own type in python3, and is common enough IMHO that pySerialTransfer should support it. Since bytes() do not need packing with struct.pack(), the proposed solution is to...

Hey PowerBroker - nice library! Thanks very much - it will save me much work compared with PacketSerial. The last checkin comment for examples/datum/Arduino/ was that it fixed float precision....

question

On multi-byte wide processors the compiler aligns data items to their native alignment, unless directed otherwise. Thus a float is aligned to a 4-byte boundary. Therefore the testStruct in tx_data...

Hey PowerBroker! Things are moving along pretty smoothly with our project! I can send trial sets of 45 or smaller no problem and the lab is pretty happy with it....

question

I have the example rx_file.py working receiving the array from an Arduino DUE using the example uart_tx_file.ino. Are there any examples that show how to save the array\file as an...

## Expected Behavior `set_callbacks()` should fail gracefully if all members are not callable ## Actual Behavior `set_callbacks()` does not fail when all members are not callable, and the code attempts...

While writing tests for `tx_obj`, I noticed that attempting to call `tx_obj(True)` resulted in incorrect values being inserted in `tx_buff` The culprit is the ordering of the instance type tests....

Introducing a test suite will serve to validate the accurate functionality of the existing code and provide a safeguard against regressions during refactoring.

The `msb`, `lsb`, and `open_ports` functions are unused and can be removed from `pySerialTransfer.py`