forked from esp8266/Arduino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsketch_jul17a.ino
65 lines (58 loc) · 1.61 KB
/
sketch_jul17a.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
License Apache v1.0
Adruino NodeMCU 1.0 ESP8266
Fire , Smoke detection with Telegram API + Buzzer Physical Sound
*/
#include "CTBot.h"
CTBot myBot;
String ssid = "m03"; // Sesuikan dengan nama wifi anda
String pass = "m03guffoe"; // sesuaikan password wifi
String token = "6152483448:AAE7ZYs-wBpxn-ZuCJNaDEU6u02vJDnz1-M"; // token bot telegram yang telah dibuat
#define Api 12 //GPIO12 (D6)
#define Gas 14 //GPIO14 (D5)
#define buzzerPin 15 //GPIO15 (D8)
void setup() {
pinMode(Api, INPUT);
pinMode(Gas, INPUT);
pinMode(buzzerPin,OUTPUT);
Serial.begin(115200);
myBot.wifiConnect(ssid, pass);
myBot.setTelegramToken(token);
// check if all things are ok
if (myBot.testConnection())
Serial.println("\n Terhubung");
else
Serial.println("\n Tidak Terhubung");
}
void loop() {
int bacasensorapi = digitalRead(Api);
int bacasensorgas = digitalRead(Gas);
Serial.print("Api : ");
Serial.print(bacasensorapi);
Serial.print(" Gas : ");
Serial.println(bacasensorgas);
if(bacasensorgas==0) //terdeteksi gas
{
String kirim;
kirim ="Warning bossku..! Ada Kebocoran Gas";
myBot.sendMessage(724268164, kirim);
delay(1000);
tone(buzzerPin, 277, 1000); // (freq , duration)
delay(500);
}
if(bacasensorapi==0) //terdeteksi api
{
String kirim;
kirim ="Warning bossku..! Ada Kebakaran";
myBot.sendMessage(724268164, kirim);
delay(1000);
tone(buzzerPin, 440, 3000); // (freq , duration)
delay(500);
}
delay(1000);
}
/*
Author : [email protected]
Release Date : 19-July-2023
Rev : b01
*/