Nextion display serial client
Project description
Nextion serial client
Lightweight Python 3.5+ async library to control Nextion displays.
Installation
Pypi
pip install nextion
Simple usage:
import asyncio
import logging
import random
from nextion import Nextion, EventType
def event_handler(type_, data):
if type_ == EventType.STARTUP:
print('We have booted up!')
logging.info('Event %s data: %s', type, str(data))
async def run():
client = Nextion('/dev/ttyS1', 9600, event_handler)
await client.connect()
# await client.sleep()
# await client.wakeup()
# await client.command('sendxy=0')
print(await client.get('sleep'))
print(await client.get('field1.txt'))
await client.set('field1.txt', "%.1f" % (random.randint(0, 1000) / 10))
await client.set('field2.txt', "%.1f" % (random.randint(0, 1000) / 10))
await client.set('field3.txt', random.randint(0, 100))
print('finished')
if __name__ == '__main__':
logging.basicConfig(
format='%(asctime)s - %(levelname)s - %(message)s',
level=logging.DEBUG,
handlers=[
logging.StreamHandler()
])
loop = asyncio.get_event_loop()
asyncio.ensure_future(run())
loop.run_forever()
Nextion constructor parameters
url: str # serial dev
baudrate: int # baud rate
event_handler: typing.Callable[[EventType, any], None] # Event handler function
loop=asyncio.get_event_loop() # your own event loop
reconnect_attempts: int = 3 # how many times to try to retry command in case of failure
encoding: str = 'ascii' # Nextion encoding
Nextion parameters
Encoding
You can update encoding on fly (This changes encoding of serial communication only):
client.encoding = 'latin-1'
Get current set encoding (Not fetched from the device)
print(client.encoding)
Event handling
event_handler
method in the example above will be called on every event comming from the display.
EventType | Data | Data attributes |
---|---|---|
TOUCH | TouchDataPayload | page_id, component_id, touch_event |
TOUCH_COORDINATE | TouchCoordinateDataPayload | x, y, touch_event |
TOUCH_IN_SLEEP | TouchCoordinateDataPayload | x, y, touch_event |
AUTO_SLEEP | None | - |
AUTO_WAKE | None | - |
STARTUP | None | - |
SD_CARD_UPGRADE | None | - |
For some components in the Nextion Editor you need to check Send Component ID
for required event.
Firmware uploading
If you installed the library you should have nextion-fw-upload
command in your PATH.
nextion-fw-upload -h
Otherwise use next command in the root of the project:
python -m nextion.console_scripts.upload_firmware -h
Usage (check with option -h
)
usage: nextion-fw-upload [-h]
[-b {2400,4800,9600,19200,38400,57600,115200,230400}]
[-ub {2400,4800,9600,19200,38400,57600,115200,230400}]
[-v]
device file
positional arguments:
device device serial port
file firmware file *.tft
optional arguments:
-h, --help show this help message and exit
-b {2400,4800,9600,19200,38400,57600,115200,230400}, --baud {2400,4800,9600,19200,38400,57600,115200,230400}
baud rate
-ub {2400,4800,9600,19200,38400,57600,115200,230400}, --upload_baud {2400,4800,9600,19200,38400,57600,115200,230400}
upload baud rate
-v, --verbose output debug messages
Additional resources:
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 nextion-1.6.0.tar.gz
.
File metadata
- Download URL: nextion-1.6.0.tar.gz
- Upload date:
- Size: 10.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 26de9a3ae078e73312175d4616f3d11a6ea2213aadf4f49639ab6cee9ad36a53 |
|
MD5 | c58a5ebf8e22aa15795f15ead6690342 |
|
BLAKE2b-256 | d6f0c4ee9e52a932cb5fb0970c5ba71f41fcc7a2e96e4915589d698131f874c8 |
File details
Details for the file nextion-1.6.0-py3-none-any.whl
.
File metadata
- Download URL: nextion-1.6.0-py3-none-any.whl
- Upload date:
- Size: 12.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 75087692c549906bc1285623d8806acc2bbc7cb4c7ab5c182a3ace5d54c814e4 |
|
MD5 | fa4b28ea26fe2fe712fb626544968bd1 |
|
BLAKE2b-256 | 61d8de9264d53fa9cc426ccfd6c0a324d00462a72a18aa103eb98616f41e5913 |