An open API service indexing awesome lists of open source software.

https://github.com/andrvv/mpywave

mpyWave is a low level library for sending and receiving bits in micropython.
https://github.com/andrvv/mpywave

lib micropython radio wave waves

Last synced: 2 months ago
JSON representation

mpyWave is a low level library for sending and receiving bits in micropython.

Awesome Lists containing this project

README

        

What is mpyWave?

mpyWave is an opensource library that serves to send bits and receive them from a pin for RF, fully compatible with all hardwares.

Example

```python
import mpyWave

wave = mpyWave.Wave(protocol = 1, pin = 16)

wave.sendWave("0")
wave.sendWave("1")

wave.sendWaves("011100010101110100001010111010000101000")

wave.overflow("1") # It sends waves compulsively

print(mpyWave.getValidBits(wave.recvWaves(length = 40)))
```