Giter Club home page Giter Club logo

ip-over-mfsk's Introduction

Usage

  1. MFSK - Transfer multiple bits in a single tone using multiple frequencies (4, 16 or 256 frequencies for 2, 4 or 8 bits respectively). Uses Fourier transform to find frequency for audio signal in small windows. Write or play audio for a message using encode.py. Decode from file using decode_mfsk.py. Decode from live audio input using decode_mfsk_realtime.py. Set MFSK = True in settings.py.
  2. FSK - Transfer data using only two frequencies (single bit), but at much higher rate. Write or play audio for a message using encode.py. Decode from file using decode_fsk.py. Decoding from live audio is not possible, yet. Set MFSK = False in settings.py.

Creating network interface

sudo ip tuntap add dev tun0 mode tun user $(id -u) group $(id -g)
sudo ip link set dev tun0 up

On machine 1:

sudo ip addr replace dev tun0 local 172.30.0.1 peer 172.30.0.2

On machine 2:

sudo ip addr replace dev tun0 local 172.30.0.2 peer 172.30.0.1

Removing the adapter:

sudo ip tuntap del dev tun0 mode tun

Credits

Original MFSK code (commit e7d2e7d) by Juulpy Networking code inspired by dsptunnel by 50m30n3 (C) 2011, licensed under GPL

ip-over-mfsk's People

Contributors

derkades avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.