micropython-linenotify
It is a MicroPython library for sending notifications to Line
Notify,which can be used with ESP8266 and ESP32.
Can send both text messages, stickers and images.
Installation
upip install micropython-linenotify
Usage
Create Instance and set token
line = LineNotify('<token>')
Notify text message
line.notify('<message>')
Notify sticker with text message
Sticker List: https://developers.line.biz/en/docs/messaging-api/sticker-list/
line.notifySticker('<Sticker Package ID>','<Sticker ID>','<Message>')
Notify image from URL with text message
line.notifyImageURL('<Image URL>','<Message>')
Example Code
# Import Library
from linenotify import LineNotify
from network import WLAN,STA_IF
# Network Setup
ssid = '<ssid>'
password = '<password>'
wlan = WLAN(STA_IF)
wlan.active(True)
print('Connecting...')
wlan.connect(ssid,password)
while not wlan.isconnected():
pass
print(wlan.ifconfig())
# Set Line Token
line = LineNotify('<token>')
# Notify text message
line.notify('Hello World!')
# Notify sticker with message
line.notifySticker(3,240,'Nice Sticker')
# Notify image from URL with message
line.notifyImageURL('https://static.wikia.nocookie.net/chainsaw-man/images/1/1b/Pochita.PNG','Pochita')
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file micropython-linenotify-0.0.5.tar.gz.
File metadata
- Download URL: micropython-linenotify-0.0.5.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7953161f8039a21f47983ae015ce0150b27c4679e358eca0e2a8efdc0deb5695
|
|
| MD5 |
0d6da819438a68cd73dad00206239f03
|
|
| BLAKE2b-256 |
120a41b8bf6f5e9a099026bf3df3c2b22f724659d4a54f8dce5329a6bf51d19b
|