Ecosyste.ms: Awesome
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: about 12 hours ago
JSON representation
mpyWave is a low level library for sending and receiving bits in micropython.
- Host: GitHub
- URL: https://github.com/andrvv/mpywave
- Owner: ANDRVV
- License: mit
- Created: 2023-04-02T18:57:39.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-03T15:47:20.000Z (5 months ago)
- Last Synced: 2024-08-03T16:57:56.231Z (5 months ago)
- Topics: lib, micropython, radio, wave, waves
- Language: Python
- Homepage:
- Size: 73.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 mpyWavewave = 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)))
```