Remotely Control An Arduino Nano RP2040 Connect
Project description
Tmx-Nano-2040-WiFi-AIO
Tmx-nano-2040-wifi-aio is a member of the Telemetrix family and is a Python asyncio client specifically tailored to remotely control and monitor the Arduino Nano RP2040 Connect using Python scripts running on your PC.
When paired with the Telemetrix4Connect2040 custom Arduino server sketch, control and monitoring of the Arduino Nano RP2040 Connect accomplished using a Wi-Fi link between the PC and the Arduino.
This library supports the following features:
- Analog and Digital Input
- Digital Outputs including PWM
- Onboard devices:
- IMU
- Microphone
- RGB LED
- I2C device communications.
- SPI device communications.
- HC-SR04 Type distance sensors.
- DHT Type humidity/temperature sensors.
- Servo motors.
- NeoPixel strips.
A User's Guide explaining installation and use is available online.
The Python API for may be found here.
Here is a sample project that blinks the Arduino Board LED:
import asyncio
import sys
from tmx_nano2040_wifi_aio import tmx_nano2040_wifi_aio
"""
Setup a pin for digital output and output a signal
and toggle the pin. Do this 4 times.
"""
# some globals
DIGITAL_PIN = 13 # arduino pin number
async def blink(my_board, pin):
"""
This function toggles a digital pin.
:param my_board: an tmx_nano2040_wifi_aio instance
:param pin: pin to be controlled
"""
# set the pin mode
await my_board.set_pin_mode_digital_output(pin)
# toggle the pin 4 times and exit
for x in range(4):
print('ON')
await my_board.digital_write(pin, 0)
await asyncio.sleep(1)
print('OFF')
await my_board.digital_write(pin, 1)
await asyncio.sleep(1)
# get the event loop
loop = asyncio.get_event_loop()
# instantiate tmx_nano2040_wifi_aio
board = tmx_nano2040_wifi_aio.TmxNano2040WifiAio(ip_address='192.168.2.246')
try:
# start the main function
loop.run_until_complete(blink(board, DIGITAL_PIN))
loop.run_until_complete(board.shutdown())
except KeyboardInterrupt:
loop.run_until_complete(board.shutdown())
sys.exit(0)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file tmx-nano-2040-wifi-aio-1.1.tar.gz
.
File metadata
- Download URL: tmx-nano-2040-wifi-aio-1.1.tar.gz
- Upload date:
- Size: 16.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 36c0b2d4fffa5ad6347e4345f9fbb939ae3bbe65c6d8eba80862218f2a8fc197 |
|
MD5 | 59fb7c0a84c9ee626996fc887be7d155 |
|
BLAKE2b-256 | 4b9e223efc0084e3f5c688bd20d9b34fe2875922575172d66a0d58f3b96bff18 |
File details
Details for the file tmx_nano_2040_wifi_aio-1.1-py2.py3-none-any.whl
.
File metadata
- Download URL: tmx_nano_2040_wifi_aio-1.1-py2.py3-none-any.whl
- Upload date:
- Size: 17.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4fe313d490267e0d00fb42c6adcfd83ede6e4a13c4c693993676264eb8e3e55a |
|
MD5 | 6cf1c84f6fd74e7282716dd74d05ebc6 |
|
BLAKE2b-256 | c9fd2853cb618bcd90ac6fedf1a9fbeccff9793efd471a1f91499102daf56839 |