ทำระบบติดตาม ด้วย GPS Tracking บน Arduino IoT Cloud EP 4

แชร์
ฝัง
  • เผยแพร่เมื่อ 25 ธ.ค. 2024

ความคิดเห็น • 27

  • @慧欣-g2x
    @慧欣-g2x 2 หลายเดือนก่อน

    thank you very much!!!!!!!! this example and code provided very appreciate. Help me a lot

  • @korlarjuan1967
    @korlarjuan1967 4 หลายเดือนก่อน

    Thank you very much, excellent video

  • @el_ingefigue
    @el_ingefigue 4 หลายเดือนก่อน

    Excellent Job, this example help me a lot

  • @Underdog-n5r
    @Underdog-n5r ปีที่แล้ว +2

    มันต้องใช่อะไรบ้างละหาซื้อทางไหนได้บ้างครับ

    • @JarnMaxEngineering
      @JarnMaxEngineering  ปีที่แล้ว +2

      หาได้ตามแอปขายของออนไลน์ได้เลยครับ
      1.ESP32
      2.สายจั๊ม เมีย-เมีย
      3.GPS Neo6M
      4.Base ESP32
      5. สายเชื่อม USB

    • @Underdog-n5r
      @Underdog-n5r 10 หลายเดือนก่อน

      ​@@JarnMaxEngineeringไม่ใช่เมียผู้หรอครับ

  • @tringo8923
    @tringo8923 7 หลายเดือนก่อน

    Sir, do we need to define Rxpin and TXpin for the ESP?

  • @044arkomkota6
    @044arkomkota6 3 หลายเดือนก่อน

    มีเป็น Aduino IDE ไหมครับ เพราะในนี้จะใช้ Could มันต้องเสียเงินอะครับ

  • @KitsadaBureekhan
    @KitsadaBureekhan 3 หลายเดือนก่อน

    เราสามรถเอาmapไปแสดงบนหน้าเว็บเพจได้ไหมครับ?

  • @juanjosegomezduran588
    @juanjosegomezduran588 7 หลายเดือนก่อน +1

    Gracias Te amo!!

  • @NanthapatAnantapuk
    @NanthapatAnantapuk 10 หลายเดือนก่อน

    พี่ครับมันเสียบสาย USB แล้วหาตัว ESP 32 ไม่เจอทำไงครับ

  • @yiguytxryxyrxpyrzto
    @yiguytxryxyrxpyrzto 11 หลายเดือนก่อน

    พอถอดสาย USB ออก แล้วเปลี่ยนไปป้อนไฟ ให้แทน บอร์ดไม่ต่อกับ Wi-Fi ครับ แต่ถ้าเสียบสาย USB ก็ทำงานปกติ ไม่ทราบเป็นเพราะอะไรครับ

    • @JarnMaxEngineering
      @JarnMaxEngineering  11 หลายเดือนก่อน

      ลองกดรีเซตด้วยดูครับ

    • @yiguytxryxyrxpyrzto
      @yiguytxryxyrxpyrzto 11 หลายเดือนก่อน

      กดแล้วครับ ก็ไม่สามารถต่อ Wi-Fi ได้ครับ อันนี้ผมเขียนผ่าน Arduino web น่ะครับ

  • @MurnaMatha
    @MurnaMatha ปีที่แล้ว

    พี่ค่ะถ้าใช้เป็นตัวesp8266เเทนได้ไหมคะ ถ้าใช้ได้นี่ต้องเเก้อะไรตรงไหนไหมคะ

    • @JarnMaxEngineering
      @JarnMaxEngineering  ปีที่แล้ว

      ต้องแก้ขาที่ต่อ TX RX gps
      #include
      ลองประยุกดูครับ
      quartzcomponents.com/blogs/electronics-projects/gps-tracker-using-node-mcu-esp8266

    • @JarnMaxEngineering
      @JarnMaxEngineering  ปีที่แล้ว

      #include
      #include
      #include "thingProperties.h"
      TinyGPSPlus gps;
      SoftwareSerial ss(4, 5);
      void setup() {
      // Initialize serial and wait for port to open:
      Serial.begin(9600);
      ss.begin(9600);
      // This delay gives the chance to wait for a Serial Monitor without blocking if none is found
      delay(1500);
      // Defined in thingProperties.h
      initProperties();
      // Connect to Arduino IoT Cloud
      ArduinoCloud.begin(ArduinoIoTPreferredConnection);

      /*
      The following function allows you to obtain more information
      related to the state of network and IoT Cloud connection and errors
      the higher number the more granular information you’ll get.
      The default is 0 (only errors).
      Maximum is 4
      */
      setDebugMessageLevel(2);
      ArduinoCloud.printDebugInfo();
      }
      void loop() {
      ArduinoCloud.update();
      // Your code here
      if (ss.available() > 0) {
      if (gps.encode(ss.read())) {
      if (gps.location.isValid()) {
      Serial.print(F("- latitude: "));
      Serial.println(gps.location.lat());
      Serial.print(F("- longitude: "));
      Serial.println(gps.location.lng());
      location = {gps.location.lat() , gps.location.lng()}; //ตัวแปร location
      Serial.print(F("- altitude: "));
      if (gps.altitude.isValid()){
      Serial.println(gps.altitude.meters());
      altitude = gps.altitude.meters(); //ตัวแปร
      }else{
      Serial.println(F("INVALID"));
      }
      }else {
      Serial.println(F("- location: INVALID"));
      }

      Serial.print(F("- speed: "));
      if (gps.speed.isValid()){
      Serial.print(gps.speed.kmph());
      Serial.println(F(" km/h"));
      speed = gps.speed.kmph(); //ตัวแปร
      }else {
      Serial.println(F("INVALID"));
      }

      }

      } //CODE GPS

      }
      /*
      Since Location is READ_WRITE variable, onLocationChange() is
      executed every time a new value is received from IoT Cloud.
      */
      void onLocationChange() {
      // Add your code here to act upon Location change
      }
      /*
      Since Speed is READ_WRITE variable, onSpeedChange() is
      executed every time a new value is received from IoT Cloud.
      */
      void onSpeedChange() {
      // Add your code here to act upon Speed change
      }
      /*
      Since Altitude is READ_WRITE variable, onAltitudeChange() is
      executed every time a new value is received from IoT Cloud.
      */
      void onAltitudeChange() {
      // Add your code here to act upon Altitude change
      }

    • @JarnMaxEngineering
      @JarnMaxEngineering  ปีที่แล้ว

      th-cam.com/video/_IQX2R6VKxI/w-d-xo.html

  • @iamamaker7096
    @iamamaker7096 หลายเดือนก่อน

    I love you

  • @TORONTOTOKYO_
    @TORONTOTOKYO_ 11 หลายเดือนก่อน

    พี่ครับของผมGPSมันอยู่ที่จุด 0 longitude 0 latitude ครับเเก้ยังไงได้บ้างครับ

    • @JarnMaxEngineering
      @JarnMaxEngineering  11 หลายเดือนก่อน

      ค่าที่คอมพิวเตอร์ขึ้นไหม ตรงแว่นขยาย หรือขึ้น 0

  • @tgxyall163
    @tgxyall163 ปีที่แล้ว +1

    ผมลองทำแล้วมันขึ้นว่า
    IndexError: index out of range
    [808] Failed to execute script 'esptool' due to unhandled exception!
    Executing command: exit status 1
    ผมสามารถแก้ไขยังไงได้บ้างครับ

    • @JarnMaxEngineering
      @JarnMaxEngineering  ปีที่แล้ว

      ลองรีเฟรชเว็บใหม่ แล้ว เปิด-ปิด agent ใหม่

  • @komikomi99
    @komikomi99 11 วันที่ผ่านมา

    is map widget in arduino iot cloud free?

  • @PatcharapornPIMKOU-ps3ro
    @PatcharapornPIMKOU-ps3ro 9 หลายเดือนก่อน

    สามารถดูความถี่การเคลื่อนที่ได้มั้ยคะ

  • @kittpoing6064
    @kittpoing6064 7 หลายเดือนก่อน

    สามารถเพิ่มบัสเซอร์กับปุ่มกดได้ไหมครับ