Skip to content

Instantly share code, notes, and snippets.

@maxpromer
Last active March 3, 2025 18:36
Show Gist options
  • Save maxpromer/0fb4fecf2ab0ef92ec270ca4f34e4b54 to your computer and use it in GitHub Desktop.
Save maxpromer/0fb4fecf2ab0ef92ec270ca4f34e4b54 to your computer and use it in GitHub Desktop.
LINE_Messaging_Massage_Option_t option; // สร้างตัวแปร option
option.image.url = "https://img2.pic.in.th/pic/IMG20230921232431.jpeg"; // ลิ้งรูป ไฟล์ JPEG ขนาดไม่เกิน 2048×2048px
if (LINE.send("User ID/Group ID", "รถโดยขโมย", &option)) { // ส่งข้อความ "รถโดนขโมย" ไปที่ LINE
Serial.println("Send notify successful");
} else {
Serial.printf("Send notify fail. check your token (code: %d)\n", LINE.status_code);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment