Skip to main content

Line Notify with MicroPython on ESP32/ESP8266

Project description

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.

github: https://github.com/PerfecXX/micropython-linenotify

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')

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

micropython-linenotify-0.0.5.tar.gz (3.7 kB view details)

Uploaded Source

File details

Details for the file micropython-linenotify-0.0.5.tar.gz.

File metadata

File hashes

Hashes for micropython-linenotify-0.0.5.tar.gz
Algorithm Hash digest
SHA256 7953161f8039a21f47983ae015ce0150b27c4679e358eca0e2a8efdc0deb5695
MD5 0d6da819438a68cd73dad00206239f03
BLAKE2b-256 120a41b8bf6f5e9a099026bf3df3c2b22f724659d4a54f8dce5329a6bf51d19b

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page