template and source for hardware projects
Go to file
King Kévin ed6b0aa2fb doc: brief project documentation 2024-03-17 07:50:14 +01:00
kicad make dragon kicad compatible 2024-03-15 05:38:30 +01:00
library@14de4004fd lib: update repo 2024-03-08 07:07:09 +01:00
.gitignore make: export 3d model 2024-03-08 07:14:21 +01:00
.gitmodules update library 2022-03-07 14:42:51 +01:00
.qeda.yaml sch: add power input 2024-03-10 07:03:41 +01:00
CHANGELOG.md doc: brief project documentation 2024-03-17 07:50:14 +01:00
DEVELOPMENT.md doc: better list dependencies 2023-03-30 22:30:26 +02:00
KiBOM_CLI.py make: add bom generator (not included in pip) 2023-03-30 22:30:26 +02:00
LICENSE.txt add CERN-OHL-S license 2021-07-22 12:22:58 +02:00
Makefile rename to ascii-friendly 2024-03-15 05:44:20 +01:00
README.md doc: brief project documentation 2024-03-17 07:50:14 +01:00
bom.ini make: include DNF parts 2024-03-08 07:14:21 +01:00
fp-lib-table lib: add logos 2023-03-30 22:25:49 +02:00
sym-lib-table lib: add partdb library 2023-03-30 22:23:41 +02:00
usb-microbc_cable_tester.kicad_pcb brd: add tooling holes 2024-03-15 06:09:19 +01:00
usb-microbc_cable_tester.kicad_pro brd: add some exclutions 2024-03-17 07:49:31 +01:00
usb-microbc_cable_tester.kicad_sch sch: change LEDs and fix orientation 2024-03-15 06:43:56 +01:00
version add output generation script 2021-07-22 12:34:35 +02:00

README.md

The USB micro-B and C cable tester identifies functionalities supported by USB cables. It helps figuring out if a USB cable is for charging or to transfer data. It supports type A to micro-B, A to C, and C to C USB cables.

usage

  • ensure the tester has a non-empty battery in the CR2032/2025, or is externally powered through the USB power port
  • plug one end of the cable in one of the host ports
  • plug the other end of the cable in one of the devices ports
  • the tester will identify the cable's capabilities

design choice

features

do:

  • USB micro-B: still wide-spread and popular for charging devices
  • USB type-A: still the de-facto host plug
  • USB type-C: becoming the standard for battery operated devices
  • C to C: often used for high power charging of phones and laptops
  • battery operated: it's a very simple device, and this avoids needing to require external power
  • power port: in case you have no battery or it runs out
  • USB 3.0: because it is hard to identify if C-C cable support Super-Speed

don't:

  • small: no need to build it as compact as possible
  • A or micro-B 3.0: the connectors that support it are obvious, and it's rare they are used for anything else than Super-Speed transfer (plus they are less common or problematic)
  • Power Delivery capabilities: this requires complex host software communicating with the eMarker chip in the cable
  • OTG: even if detecting this functionality is easy, micro-B OTG adapters are not popular anymore

future:

  • interpret the supported functionalities to show the cable purpose
  • show a simple cable type result, and not just the individual capabilities

alternatives