#P2P File Transfer

30 messages · Page 1 of 1 (latest)

charred haven
#

I wonder if there's a way to transfer files between flippers without any middlemen (i.e. qFlipper or the mobile app). Maybe using subghz or ir? Would this be possible?

frank urchin
#

Technically yes but very very impractical

charred haven
#

Why impractical?

stable birch
#

To follow up, maybe with wifi dev boards or bt?

charred haven
#

Bluetooth could work 🤔

smoky hinge
#

SPI is already slow on Flipper, adding a additional layer would even be slower

chrome gazelle
#

Still could be useful for data that's very small. Obviously you won't be syncing large amounts of data, but sending over a few kilobytes of data wouldn't be too bad.

fathom dove
#

Why did i read kilobytes in that messages as kidneys

smoky hinge
old wave
#

BT do not need any add-on, and it's made for this purpose:-)

mint badger
smoky hinge
fathom dove
#

Is that a hardware or software limitation?

smoky hinge
#

I think the best way would be thru SubGhz

#

Have the receiving end select a folder for received files

#

And then send each line over subGhz

#

I can possibly write up a PoC but I don't have a another flipper

charred haven
fathom dove
smoky hinge
#

Probably will use something similar to subGhz chat

#

but it transmits bytes versus text

#

it will send a START byte

#

and start all lines with a BEGIN byte and END byte when it reaches the end of the line

#

and when the file is done it will end with a FINISH byte

#

probably 0x01 for START

#

0x02 for BEGIN, 0x03 for END