Skip to content

Instantly share code, notes, and snippets.

@maxpromer
Created March 3, 2025 18:28
Show Gist options
  • Save maxpromer/ec5c380ba09c8db7e2d3218d64ef8d88 to your computer and use it in GitHub Desktop.
Save maxpromer/ec5c380ba09c8db7e2d3218d64ef8d88 to your computer and use it in GitHub Desktop.
LINE_Messaging_Massage_Option_t option; // สร้างตัวแปร option
// ตั้งค่าส่งแผนที่
option.map.service = LONGDO_MAP; // ใช้แผนที่จาก Longdo Map
// option.map.service = GOOGLE_MAP; // ใช้แผนที่จาก Google Map
option.map.lat = 13.91024; // ละติจูด
option.map.lng = 100.51108; // ลองจิจูด
option.map.zoom = 20; // ระยะซูม กำหนดได้ 1 - 20
// option.map.api_key = "Google Map API Key"; // กรอก API Key หากใช้ Google Map
if (LINE.send("User ID/Group ID", "รถโดยขโมย", &option)) { // ถ้าส่งข้อความ "รถโดนขโมย" ไปที่ LINE สำเร็จ
Serial.println("Send notify successful"); // ส่งข้อความ "Send notify successful" ไปที่ Serial Monitor
} else { // ถ้าส่งไม่สำเร็จ
Serial.printf("Send notify fail. check your token (code: %d)\n", LINE.status_code); // ส่งข้อความ "Send notify fail" ไปที่ Serial Monitor
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment