Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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: about 12 hours 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)))
```