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

Uploaded Source

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