Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mattytrentini/micropython-m5stack-dds
A MicroPython driver for the M5Stack DDS frequency generator
https://github.com/mattytrentini/micropython-m5stack-dds
Last synced: 3 months ago
JSON representation
A MicroPython driver for the M5Stack DDS frequency generator
- Host: GitHub
- URL: https://github.com/mattytrentini/micropython-m5stack-dds
- Owner: mattytrentini
- Created: 2022-02-06T05:01:03.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-02-06T05:02:44.000Z (almost 3 years ago)
- Last Synced: 2024-04-22T12:35:13.903Z (7 months ago)
- Language: Python
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-micropython - micropython-m5stack-dds - MicroPython driver for the M5Stack DDS frequency generator. (Libraries / IO)
README
# micropython M5Stack DDS
```
>>> from machine import Pin, SoftI2C
>>> i2c = SoftI2C(scl=Pin(32), sda=Pin(26))
>>> i2c.scan()
[49]
>>> hex(49)
'0x31'
``````
>>> i2c.readfrom_mem(0x31, 0x10, 6)
b'ad9833'
```