상품상세 정보

뒤로가기

[해외]프리매틱스 OBD-II UART 어답터 V2 (아두이노용) (Freematics OBD-II UART Adapter V2 (for Arduino))

품절

프리매틱스 OBD-II UART 어답터 V2 (아두이노용) (Freematics OBD-II UART Adapter V2 (for Arduino))

상품 정보
판매가(VAT별도) 180000
할인판매가 180,000원 (180,000원 할인)
할인금액 총 할인금액 원
(모바일할인금액 원)
적립금

190원(0.10%)

무통장 결제시 적립금 %

카드 결제시 적립금 %

실시간 계좌이체시 적립금 %

적립금 결제시 적립금 %

휴대폰 결제시 적립금 %

예치금 결제시 적립금 %

에스크로 결제시 적립금 %

가상계좌 결제시 적립금 %

가상계좌 결제시 적립금 %

케이페이 결제시 적립금 %

페이나우 결제시 적립금 %

페이코 결제시 적립금 %

제휴적립금
배송방법 택배
배송비 3,500원 (100,000원 이상 구매 시 무료)
상품 추가설명 번역정보
배송
수량 up down  
상품 목록
상품 정보 가격 삭제
총상품금액(수량) 0
구매하기
구매하기

프리매틱스 OBD-II UART 어답터 V2 (아두이노용)

(Freematics OBD-II UART Adapter V2 (for Arduino))

개요

  • 본 제품은 차량의 OBD-II 포트의 데이터를 UART로 아두이노에 전송하여 주는 아답터입니다.
  • 전용 아두이노 라이브러리를 이용하여 사용이 가능하며, OBD-II 데이터 및 6축 MEMS 모션 센서, 자동차 배터리 전압 측정을 위한 voltmeter를 제공합니다.
  • 본 아답터는 OBD-II 포트에서 전원을 끌어다 5V(최대 2.1A까지)로 변환하여 자체 전원 및 아두이노와 같은 부착된 장치의 전원을 공급할 수 있습니다.

특징

  • Access to all standard OBD-II PIDs with extended ELM327 AT command-set
  • Built-in MPU-6050 MEMS module (accelerometer, gyroscope & temperature)
  • Built-in voltage meter for measuring car battery voltage
  • DC 5V/2.1A power supply for host device
  • Serial UART data interface for use with micro-controllers
  • USB interface for use with PC, laptop, tablet and single board computer
  • Supporting CAN bus & KWP2000 protocols
  • Reading and clearing vehicle diagnostic trouble code (engine & powertrain only)
  • Low power mode @6mA
  • Arduino library and sketches available
  • Compatibility

    The adapter plugs into the OBD port usually located under the steering column or slightly to the left of it. To check if your vehicle is OBD-II certified, open your hood and find the sticker that looks like this:

    obd_sticker

    Vehicles using following vehicle protocols are supported.

    • CAN 500Kbps/29bit
    • CAN 500Kbps/11bit
    • CAN 250Kbps/29bit
    • CAN 250Kbps/11bit
    • KWP2000 Fast
    • KWP2000 5Kbps
    • ISO9141-2

    The OBD-II Adapter is compatible with all Arduino range including Arduino UNO, Arduino Leonardo, Arduino Micro, Arduino Nano, Arduino Mini, Arduino Pro Mini, Arduino MEGA 1280/2560/ADK.

    Connectors

    The adapter stays plugged into the OBD port usually located under the steering column or slightly to the left of it.  A cable comes out from the adapter and splits into one 4-pin connector two 2-pin connectors, including power lines (VCC/GND) and data lines (Rx/Tx). They can be connected to Arduino with onboard breakout pins or breakout shield. Your Arduino device will look tidy in car with only one cable.

    Power Connector (2-pin 2.54 Dupont connector)

    • Red: VCC (connecting to Arduino's VCC)
    • Black: GND (connecting to Arduino's GND)

    Serial UART Data Connector (2-pin 2.54 Dupont connector)

    • White: Rx (connected to Arduino's serial Tx)
    • Green: Tx (connected to Arduino's serial Rx)

    USB Port

    • For connection with computer or tablet via micro USB cable
    • For power output (5V/2A)

문서

  • Extended ELM327 Command Set

    We have extended standard ELM327 command set for following purposes:

    • Multiple (up to 8) OBD-II PIDs reading from a single query
    • Accessing built-in MEMS module (MPU-6050)
    • Accessing built-in voltmeter (measuring battery voltage)

    Following are the added commands:

    ATACL

    • Function: reading accelerometer data
    • Response: X/Y/Z values from accelerometer in format of X,Y,Z

    ATGYRO

    • Function: reading gyroscope data
    • Response: X/Y/Z values in the format X,Y,Z

    ATTEMP

    • Function: reading temperature data
    • Response: temperature (raw) data

    ATRV

    • Function: reading car battery voltage
    • Response: voltage value

    The Arduino library has API implemented with all the extended commands.

     

    Library

    A dedicated Arduino library is provided for easy access to all the features with any type of Arduino.

    Some commonly used APIs are like following:

    • setBaudRate - set adapter serial baudrate
    • readPID - read specified OBD-II PID and return parsed value
    • clearDTC - clear diagnostic trouble code
    • getVoltage - measure car battery voltage
    • getVIN - retrieve Vehicle Identification Number
    • getTemperature - get device temperature
    • readAccel - read accelerometer X/Y/Z values
    • readGyro - read gyroscope X/Y/Z values

    There are more extensive APIs experts. Please refer to the library header file for more information.

    Here is an example Arduino sketch of a simplest engine RPM indicator, which uses the pin 13 LED (built in on Arduino board) to indicate whether the engine is above 3000 rpm.

    #include <OBD2UART.h>    COBD obd;    void setup()  {    // we'll use the debug LED as output    pinMode(13, OUTPUT);    // start communication with OBD-II adapter    obd.begin();    // initiate OBD-II connection until success    while (!obd.init());  }    void loop()  {    int value;    // save engine RPM in variable 'value', return true on success    if (obd.readPID(PID_RPM, value)) {      // light on LED on Arduino board when the RPM exceeds 3000      digitalWrite(13, value > 3000 ? HIGH : LOW);    }  }

    A more comprehensive example sketch can be found here.

    Some commonly used PIDs are defined in OBD library as following.

    Engine

    • PID_RPM – Engine RPM (rpm)
    • PID_ENGINE_LOAD – Calculated engine load (%)
    • PID_COOLANT_TEMP – Engine coolant temperature (°C)
    • PID_ENGINE_LOAD – Calculated Engine load (%)
    • PID_ABSOLUTE_ENGINE_LOAD – Absolute Engine load (%)
    • PID_TIMING_ADVANCE – Ignition timing advance (°)
    • PID_ENGINE_OIL_TEMP – Engine oil temperature (°C)
    • PID_ENGINE_TORQUE_PERCENTAGE – Engine torque percentage (%)
    • PID_ENGINE_REF_TORQUE – Engine reference torque (Nm)

    Intake/Exhaust

    • PID_INTAKE_TEMP – Intake temperature (°C)
    • PID_INTAKE_PRESSURE – Intake manifold absolute pressure (kPa)
    • PID_MAF_FLOW – MAF flow pressure (grams/s)
    • PID_BAROMETRIC – Barometric pressure (kPa)

    Speed/Time

    • PID_SPEED – Vehicle speed (km/h)
    • PID_RUNTIME – Engine running time (second)
    • PID_DISTANCE – Vehicle running distance (km)

    Driver

    • PID_THROTTLE – Throttle position (%)
    • PID_AMBIENT_TEMP – Ambient temperature (°C)

    Electric Systems

    • PID_CONTROL_MODULE_VOLTAGE – vehicle control module voltage (V)
    • PID_HYBRID_BATTERY_PERCENTAGE – Hybrid battery pack remaining life (%)

    Additional defines can be added to access all OBD-II PIDs which the car's ECU provides.

     

    Comparison

    The following table lists the differences among different Freematics OBD-II adapter models.

    Features \ Models OBD-II I2C Adapter OBD-II UART Adapter V1 OBD-II UART Adapter V2
    Connection Interface I2C Serial UART Serial UART
    Additional Interface N/A N/A microUSB
    MEMS Sensor MPU-6050 N/A MPU-6050
    Voltmeter Yes Yes Yes
    Max. Output Power 2A 2A 2.1A
    Standby Mode Power 10mA 5mA 6mA

     

    FAQ

    Q: What is this product used for?
    A: The most straight-forward use of this product is for making Arduino possible to access vehicle data easily. The OBD-II data, together with other data from GPS or all kinds sensors, can be logged and stored on SD/TF card with Arduino and that makes an open-source vehicle data logger (check out the data logger kits). More extensively, many interesting interaction applications requiring car data can be made.

    Q: How is the adapter powered?
    A: The adapter gets power from the 12V DC output from the OBD-II port.

    Q: Does my Arduino needs power from somewhere in the car?
    A: The adapter provides regulated 5V output for powering Arduino and other devices, so no extra power cord is needed.

    Q: Do I need a CAN bus shield to use with the adapter?
    A: Definitely no. The adapter retrieves data from CAN bus, like a CAN bus shield does and convert the more complicated CAN bus interface to simple serial UART interface which Arduino and most embedded systems are easy to access. The data connection is provided by adapter's data connector (Rx and Tx).

    Q: How do I connect the adapter with my Arduino?
    A: The adapter works with all models of Arduino with the dedicated Arduino library and is connected with Arduino by connecting adapter's Tx to Arduino's Rx (D0) and adapter's Rx to Arduino's Tx (D1). If you want to connect and disconnect the adapter with your Arduino effortlessly, it's recommended to use a common I/O breakout shield or use an Arduino board with breakout pins for Rx/Tx/VCC/GND.

    Q: Is the power provided by the adapter always available in car?
    A: This depends on whether the OBD-II port of your car still has power after ignition is off. Actually it is so with most cars.

    Q: What's the maximum frequency of data polling?
    A: The OBD-II PIDs are polled one after another. The time for a polling depends on the speed of car's ECU computer and how busy the computer is in different status. With a typical modern car with CAN bus, the time can be as low as 10ms. In other word, up to 100 times of data polling can be done in one second.

연관제품

상품 상세 정보
상품명 [해외]프리매틱스 OBD-II UART 어답터 V2 (아두이노용) (Freematics OBD-II UART Adapter V2 (for Arduino))
판매가(VAT별도) 180,000원 재입고 알림 SMS
상품코드 P0000RHA
수량 수량증가수량감소
상품요약정보 차량의 OBD-II 포트의 데이터를 UART로 아두이노에 전송하여 주는 아답터입니다.

결제 안내

결제는 신용카드, 실시간 계좌이체, 무통장 입금 등을 선택하여 진행하실 수 있습니다. 세금계산서 발행을 요청하실 경우에는 결제방법을 무통장 입금으로 선택하시고 사업자등록증 사본을 cs@vctec.co.kr으로 보내주셔야 합니다.

배송 안내

  • 배송 방법 : 택배
  • 배송 지역 : 전국지역
  • 배송 비용 : 3,500원
  • 배송 기간 : 1일 ~ 10일
  • 배송 안내 : - 산간벽지나 도서지방은 별도의 추가금액을 지불하실 수 있습니다.
    - 상품종류에 따라서 상품의 배송이 다소 지연될 수 있습니다.
    - 구매 총액이 10만원 미만의 주문 경우는 택배발송시에는 배송비 3,500원이 추가됩니다.
    - 구매 총액 10만원 미만 주문의 퀵발송 및 급행처리 요청시 핸들링 비용 3,500원이 추가 됩니다.
    - 매장이 아니므로 방문구매 및 수령이 불가능 합니다.
    - 영업일 기준 2일 이내 미출고 물품은 해외 수입 제품입니다.
    - 높은 전압과 전류를 사용하는 제품은 사용 전 안전에 유의 바랍니다.
    - 제품을 교육수준으로 설명하거나 사용자 프로젝트에 대한 컨설팅이나 기술지원을 하지 않사오니 참고부탁 드립니다.

교환/반품 안내

교환 및 반품안내
- 상품을 공급 받으신 날로부터 7일이내에 교환 및 반품이 가능하며,
- 미개봉/미설치 제품인 경우이거나 불량제품인 경우에 한해 가능합니다.

- 교환/반품시 승인 없이 제품을 먼저 발송시 왕복 택배비가 발생합니다.
- 상품가치가 훼손되어 재판매가 불가능 할 경우는 교환/반품이  불가능합니다.
- 소프트웨어는 개봉시 교환/반품이 불가능합니다.

- 주문수입제품의 경우는 환불/교환이 불가능합니다.

- 수입제품의 경우는 수리가 불가능합니다.
- 배송지연안내를 받으신 경우는 주문 수입되는 경우이며, 주문 수입 제품의 경우 환불/교환이 불가능합니다.

- 고객변심에 의한 교환 및 반품 시 왕복 배송비는 고객님께서 부담하셔야 합니다.
- 제품구성품 및 스펙은 제조사 사정에 의해 예고없이 변경 될수도 있습니다.

환불 안내

환불시 반품 확인여부를 확인한 후 7영업일 이내에 결제 금액을 환불해 드립니다.
신용카드로 결제하신 경우는 신용카드 승인을 취소하여 결제 대금이 청구되지 않게 합니다.
(단, 신용카드 결제일자에 맞추어 대금이 청구 될수 있으면 이경우 익월 신용카드 대금청구시 카드사에서 환급처리됩니다.)

서비스문의 안내

상품사용후기

상품후기쓰기 모두보기

게시물이 없습니다

상품 Q&A

상품문의하기 모두보기

게시물이 없습니다

판매자 정보