상품상세 정보

뒤로가기

CH341A USB 버스 컨버터 모듈 -SPI/I2C/UART/RS232/RS485 (CH341A USB Bus Conveter Module - SPI/I2C/UART/RS232/RS485/etc)

CH341A USB 버스 컨버터 모듈 -SPI/I2C/UART/RS232/RS485 (CH341A USB Bus Conveter Module - SPI/I2C/UART/RS232/RS485/etc)

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

10원(0.10%)

무통장 결제시 적립금 %

카드 결제시 적립금 %

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

적립금 결제시 적립금 %

휴대폰 결제시 적립금 %

예치금 결제시 적립금 %

에스크로 결제시 적립금 %

가상계좌 결제시 적립금 %

가상계좌 결제시 적립금 %

케이페이 결제시 적립금 %

페이나우 결제시 적립금 %

페이코 결제시 적립금 %

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

CH341A USB 버스 컨버터 모듈 -SPI/I2C/UART/RS232/RS485

(CH341A USB Bus Conveter Module - SPI/I2C/UART/RS232/RS485/etc)

IMG_0242

개요

  • 본 제품은 CH341A USB 버스 컨버터 모듈 -SPI/I2C/UART/RS232/RS485입니다.
  • CH341A 칩을 기반으로 디자인된 제품으로 USB를 통해 SPI/I2C/UART/RS232/RS485 통신을 할 수 있습니다.
  • SPI/I2C/UART/RS232/RS485 인터페이스를 가진 장치와 연결하여 사용이 가능합니다.

특징

  • Product Features: CH341A USB control chip inside
  • Full-speed USB interface, compatible with USB V2.0, the design of the standard USB-A male;
  • Computer USB power supply, the simulation standard serial, used to upgrade serial peripherals, additional serial port, or via USB;
  • Supports 3.3V and 5V TTL target system, the serial application is fully compatible with the computer-side under the Windows operating system;
  • Support for 5, 6, 7, or 8 data bits, odd parity, even parity, blank, signs, and no parity;
  • Support for serial port to send to enable serial receive ready transmission rate control signal and MODEM liaison signal;
  • By adding level converter module, RS232, RS485, interface; (supporting modules for sale)
  • Provide two parallel port interface modes: EPP mode and MEM mode; USB to parallel port can be used for simple digital I / O control;
  • Support for a variety of serial communication modes, UART, I2C, SPI;
  • Supports 2-wire and 4-wire synchronous serial interface, I2C supports four kinds of transmission speeds;
  • The perfect support for the STC the MCU download and debugging STC official recommended program;
  • Support for out output voltage, selectable 3.3V 5V or not output;
  • Support the work status indicators;
  • Dual interface output;
  • Hardware full-duplex serial port, built-in send and receive buffer, and support the communication baud rate 50bps ~ 2Mbps.
  • Support WINDOWS 98/ME/2000/XP/server 2003/VISTA/server 2008/WIN 7/64/32-bit.
  • CH341A USB-I2C/IIC/SPI/UART/TTL/ISP 어댑터, EPP/MEM 병렬 포트 변환기

문서

  • http://images.100y.com.tw/pdf_file/54-YSUMA01-341A.pdf

  • Recommended Software:

    FlashRom

    PonyProg

    AVRDude

    Applications:

    Simulation of the standard serial port for the upgrade serial peripherals, additional serial port or via USB.
    Need to use I2C, SPI, UART, TTL serial and other occasions;
    Electronics Engineers debugging download;
    Variety of hardware systems, software system debugging;
    Serial Brush;

    How to use:

    1. Mode Select:

    2. Level Select:


    3. Voltage Select:

    4. Output Interface:

  • Some pain to find the sw and  the driver, so i copied it on my Google Drive space

    What occurred is the USB2I2C program so: need to download also MSSTDFMT.DLL to create the application (in VB !!!), register it with regsvr32 MSSTDFMT.DLL and register also tabctl32.ocx using regsvr32 tabctl32.ocx


    Now, I can exec the program to talk to I2C device.Cool! it's work now. But how it works?

    Find the spec of the bus converter chip (CH341A) but no real useful information. The real way to understand how to use this adapter is to understand how I2C works:
    1.send Address info with read or write bit
    2.send offset byte: from which address start the read or the write
    3. define how many byte read or write.

    Look at the following pic finded on the doc package...everything now is clear...or I hope so!
    I2C read operation using the USB adapter
    I2C read operation using the USB adapter
    I2C write operation using the USB adapter
    I2C write operation using the USB adapter

    Try now to read some and write some info from the simplest I2C device on my collection, a 24c02 eeprom device (buyed from dx.com). This one:
    Atmel 24c02 connected to USB Converter
    Using the dedicated panel of the control sw works smooth. I can read and write the data on my flash 2 k memory. Now start to read the data using the other panel (most general one) to be sure that I have understud how it works.
    Set the length field  with 2 byte (all is hex notation), the data with the address of the device. Here start the problem. You need to use always the write addressing (LSB to 0) and use the "data to read" field to choose if you are writing (set to 0) or reading (set to the correct length)

    For this example,i want to write "FF" at the first cell of the memory.

    1. Put "3" in the  "length" field in "write panel"
    2. Put "A000FF" in the  "data" field (the address of the chip is  A0 (10100000), 00 is the offset address and FF is the data to write)
    3. Put "0" in the "length" field in data to read field
    4. Push "read/write" button...remember..the Data field in "data to read" dont change. You need to read it !

    To read some data:
    1. Set "2" in the "length" field in "write panel"
    2. Set "A000" in the "data" field in "write panel" ( Address in write mode is "A0", offset is "00")
    3. Put "A" in the length field of the "data to read" panel



    Now some more funny test. 
    Connect a Clock I2C module based on Atmel DS3231. I need to persist the current data to the Jumping Sumo, so... use this module bought on dx.com than also got a 24 k eeprom based on a 24c32 device and a battery. This is the pic of the module:


    High Precision Real-Time Clock Module connected to USB 2 I2C Converter

         DS3231 High Precision Real-Time Clock Module

    Try to read hours, minute and second from DS3231 chip:


    1. Set "2" in the "length" field in "data to write" panel
    2. Set "D000" in the "data" field on "data to wite" panel (D0 is the write address of the clock device)
    3. Set "3" in the "length" field in "data to read" panel
    4. Got some like "38 15 10" --> looking at the specs of the clock chip, the first byte are second, the second byte is the hours and the last is the day...as usual in hex format.

    Try  to read the temperature:
    1. Set "2" in the "length" field in "data to write" panel
    2. Set "D011" in the "data" field on "data to wite" panel (D0 is the write address of the clock device, 11 is the offset's registry)
    3. Set "2" in the "length" field in "data to read" panel
    4. Got some like "1A 80"  looking again at the specs of the clock chip, the first byte are the MSB of the temp and the second...well, got the first 2 bit, convert to dec and divide by 4!
    So:1A == 26d, 80==10000000,convert to dec the first 2 bit(10 ==  2d) and divide for 4 =0,5...at the end the temperature is 26+0,5 °C

    Here the full memory map of the ds3231 device

    DS3231 memory map
    DS3231 memory map

연관제품



상품 상세 정보
상품명 CH341A USB 버스 컨버터 모듈 -SPI/I2C/UART/RS232/RS485 (CH341A USB Bus Conveter Module - SPI/I2C/UART/RS232/RS485/etc)
판매가(VAT별도) 9,640원
상품코드 P000BGIS
수량 수량증가수량감소
상품요약정보 CH341A USB 버스 컨버터 모듈 -SPI/I2C/UART/RS232/RS485입니다.

결제 안내

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

배송 안내

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

교환/반품 안내

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

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

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

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

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

환불 안내

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

서비스문의 안내

상품사용후기

상품후기쓰기 모두보기

게시물이 없습니다

상품 Q&A

상품문의하기 모두보기

게시물이 없습니다

판매자 정보