معرفی شرکت ها


ev3msg-0.0.3.7


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

A EV3 Messaging Library for Python
ویژگی مقدار
سیستم عامل -
نام فایل ev3msg-0.0.3.7
نام ev3msg
نسخه کتابخانه 0.0.3.7
نگهدارنده []
ایمیل نگهدارنده []
نویسنده JJTV
ایمیل نویسنده -
آدرس صفحه اصلی -
آدرس اینترنتی https://pypi.org/project/ev3msg/
مجوز OSI Approved :: GNU General Public License v3 (GPLv3)
# ev3msg ## Making Communication with the EV3 easier ev3msg is a library for communicating with your original, unmodified EV3 Brick via Bluetooth<br> ## Features - Works via Bluetooth - Can send strings, booleans, integers and float numbers ## Code Examples - Connect to the EV3<br> ```python from ev3msg import EV3 ev3 = EV3('EV3') # or ev3 = EV3('00:16:53:47:27:F4') ``` You can connect to the EV3, by using the EV3 Class and entering the EV3 Name, or it's MAC Address <br> - Send a message to the EV3<br> ```python ev3.send_message('title', 'content') ``` You can send a message to the EV3 by calling the `send_message` method <br> - Receive a message from the EV3 ```python message_object = ev3.get_message('message_title') content = message_object.value content_type = message_object.d_type title = message_object.title ``` You can also specify a Timeout Parameter, to wait for the message. Defaults to 5 Seconds ```python msg = ev3.get_message('please_wait_for_me', timeout=10) ``` - Disconnect from the EV3 (please do this) ```python ev3.disconnect() ``` # Receiving and Sending Messages from the EV3 - Receive Incoming messages<br><br> <img src="https://i.ibb.co/NyVtcXk/upload.png" alt="upload"> - Send Messages back<br><br> <img src="https://i.ibb.co/6mZvGMP/upload.png" alt="upload"> # Credits Message Encoding and Decoding, as well as some other code snippets by Jerry Nicholls<br> Check it out here: https://gitlab.com/Jander/ev3-mailbox-python/-/blob/master/ev3mailbox.py Change Log ========== 0.0.3.7 (09/01/2022) ------------------- - Bug Fixes


نحوه نصب


نصب پکیج whl ev3msg-0.0.3.7:

    pip install ev3msg-0.0.3.7.whl


نصب پکیج tar.gz ev3msg-0.0.3.7:

    pip install ev3msg-0.0.3.7.tar.gz