ตู้ไปรษณีย์แจ้งเตือนทาง Line สอนทำแบบระเอียดยิ๊บ..
---------------------
จากเมื่อสัปดาห์ที่แล้วผมได้โพสต์วีดีโอทดสอบการทำงานของตู้ไปรษณีย์แจ้งเตือนทางไลน์ไป ก็มีหลายๆคนสนใจผมจึงได้ทำคลิปขึ้นมา เพื่อพาทุกคนทำ ผมวังว่าคลิปนี้จะมีประโยชน์สำหรับใครหลายคนนะครับผม😊
-------------------------------------------------
คลิป https://www.youtube.com/watch?v=_cVsQ1oRuRA&t=108s
--------------------------------------------------
โค้ด
void Line_Notify1(String message1) ;
#include <ESP8266WiFi.h>
#include <DHT.h>
#define WIFI_SSID "ชื่อ wifi" /////////////*************แก้
#define WIFI_PASSWORD "รหัส wifi"////////**************แก้
#define LINE_TOKEN_PIR "line token"////***************แก้
#define PirPin D6
#define DHTPIN D7
#define DHTTYPE DHT11
DHT dht(DHTPIN, DHTTYPE);
String message1 = "ข้อความแจ้งเตือน";//****************แก้
bool beep_state = false;
bool send_state = false;
uint32_t ts, ts1, ts2;
void setup() {
Serial.begin(115200);
Serial.println();
pinMode(PirPin, INPUT);
pinMode(LED_BUILTIN, OUTPUT);
digitalWrite(LED_BUILTIN, HIGH);
dht.begin();
Serial.println("connecting");
WiFi.mode(WIFI_STA);
WiFi.begin(WIFI_SSID, WIFI_PASSWORD);
Serial.print("connecting");
while (WiFi.status() != WL_CONNECTED) {
Serial.print(".");
delay(500);
}
Serial.println();
Serial.print("connected: ");
Serial.println(WiFi.localIP());
delay(10000);
Serial.println("Pir Ready!!");
read_sensor();
ts = ts1 = ts2 = millis();
}
void loop() {
ts = millis();
if (WiFi.status() == WL_CONNECTED) {
digitalWrite(LED_BUILTIN, LOW);
} else {
digitalWrite(LED_BUILTIN, HIGH);
}
if ((ts - ts2 >= 60000) && (WiFi.status() == WL_CONNECTED)) {
read_sensor();
}
if ((ts - ts1 >= 5000) && (beep_state == true)) {
beep_state = false;
}
if ((digitalRead(PirPin) == HIGH) && (beep_state == false) && (WiFi.status() == WL_CONNECTED)) {
while (digitalRead(PirPin) == HIGH) delay(100);
Serial.println("Detect !");
Line_Notify1(message1);
beep_state = true;
}
delay(10);
}
void Line_Notify1(String message) {
WiFiClientSecure client;
if (!client.connect("notify-api.line.me", 443)) {
Serial.println("connection failed");
delay(2000);
return;
}
String req = "";
req += "POST /api/notify HTTP/1.1\r\n";
req += "Host: notify-api.line.me\r\n";
req += "Authorization: Bearer " + String(LINE_TOKEN_PIR) + "\r\n";
req += "Cache-Control: no-cache\r\n";
req += "User-Agent: ESP8266\r\n";
req += "Content-Type: application/x-www-form-urlencoded\r\n";
req += "Content-Length: " + String(String("message=" + message1).length()) + "\r\n";
req += "\r\n";
req += "message=" + message1;
// Serial.println(req);
client.print(req);
delay(20);
while (client.connected()) {
String line = client.readStringUntil('\n');
if (line == "\r") {
break;
}
}
}
void read_sensor() {
float h = dht.readHumidity();
float t = dht.readTemperature();
if (isnan(h) || isnan(t)) {
Serial.println("Failed to read from DHT sensor!");
return;
}
Serial.print("Temperature: ");
Serial.print(t);
Serial.println(" *C ");
}
----------------------------------------------------------
同時也有1部Youtube影片,追蹤數超過25萬的網紅iT24Hrs,也在其Youtube影片中提到,สัมภาษณ์คุณอริยะ พนมยงค์ กรรมการผู้จัดการ LINE ประเทศไทย ที่งาน LINE Developer Day 2016 ณ กรุงโตเกียว ประเทศญี่ปุ่น วันที่ 29 กันยายน 2559...
「line notify api」的推薦目錄:
- 關於line notify api 在 Audom Idea Facebook 的最讚貼文
- 關於line notify api 在 軟體廚房 Facebook 的最佳解答
- 關於line notify api 在 iT24Hrs Youtube 的最佳解答
- 關於line notify api 在 【教學】Line Notify API 訊息通知串接設定讓你的網站可以透過 ... 的評價
- 關於line notify api 在 louis70109/lotify: LINE Notify API wrapper for Python - GitHub 的評價
- 關於line notify api 在 如何使用LINE Notify 發通知| AnnKuoQ Blog 的評價
- 關於line notify api 在 各位大大好,想請教Line notify有辦法能取得使用者的token後 ... 的評價
- 關於line notify api 在 how to use axios to send data to line notify - api - Stack Overflow 的評價
- 關於line notify api 在 line notify權杖2023-在Facebook/IG/Youtube上的焦點新聞和 ... 的評價
- 關於line notify api 在 line notify權杖2023-在Facebook/IG/Youtube上的焦點新聞和 ... 的評價
line notify api 在 軟體廚房 Facebook 的最佳解答
一次搞懂 OAuth 與 SSO
.
現在很多商業網站會直接接像是 FB、Google+ 來建立會員資料,如果還不是很了解的朋友,可以來參考董大偉老師的這篇文章。
#OAuth #SingleSignOn
line notify api 在 iT24Hrs Youtube 的最佳解答
สัมภาษณ์คุณอริยะ พนมยงค์ กรรมการผู้จัดการ LINE ประเทศไทย ที่งาน LINE Developer Day 2016 ณ กรุงโตเกียว ประเทศญี่ปุ่น วันที่ 29 กันยายน 2559
line notify api 在 louis70109/lotify: LINE Notify API wrapper for Python - GitHub 的推薦與評價
Lotify is a LINE Notify client SDK that you can build notification bot quickly. If your programing language is not python, here had another language:. ... <看更多>
line notify api 在 如何使用LINE Notify 發通知| AnnKuoQ Blog 的推薦與評價
最近做了一個監控的bat,如果服務有發生問題就發通知提醒,而LINE 是很多人都 ... -F "message=Hello World" https://notify-api.line.me/api/notify ... ... <看更多>
line notify api 在 【教學】Line Notify API 訊息通知串接設定讓你的網站可以透過 ... 的推薦與評價
【教學】 Line Notify API 訊息通知串接設定讓你的網站可以透過Line接收訊息#LineNotifyApi #LineAPI #Line串接. ... <看更多>