488dc1017b1aec35b72ac68676fb2e104fa9a712
[libam7xxx.git] / README.asciidoc
1 = libam7xxx
2
3 libam7xxx is an Open Source library to communicate via USB with projectors and
4 Digital Picture Frames based on the Actions Micro AM7XXX family if ICs.
5
6 libam7xxx makes it possible to use these devices as USB displays on
7 non-Windows Operating Systems like GNU/Linux or Android/Linux just to name
8 a few, and on non-PC platforms like for instance mobile phones, tablets or
9 game consoles.
10
11 The first driver supporting these devices was _acerc11xdrv_ from Reto Schneider:
12 https://github.com/rettichschnidi/acerc11xdrv
13
14 Another project with the same purpose is _acerc110_ from Thomas Baquet:
15 https://github.com/lordblackfox/acerc110
16
17 == AM7XXX
18
19 An overview of some AM7XXX chips (AM7211A AM7212 AM7212P AM7318 AM7213D
20 AM7213V) can be found in http://www.actions-micro.com/dpf_psg.pdf
21
22 An example of datasheet illustrating the functionalities of such ICs (AM7531)
23 is at: http://wenku.baidu.com/view/543c8b4d852458fb770b56ee.html
24
25 == Supported devices
26
27 The devices supported by libam7xxx use USB bulk transfers and a simple packet
28 based protocol to exchange data and commands to and from a host system and the
29 AM7XXX chip.
30
31 Those with USB VendorID +1de1+ are devices based on Actions Micro/Action Media
32 designs, usually having two modes:
33
34  - USB Mass Storage mode (ProductID: +1101+)
35  - Generic bulk data transfer mode (ProductID: +c101+)
36
37 The mode can be switched with the command:
38
39  $ sudo usb_modeswitch \
40    --default-vendor 0x1de1 \
41    --default-product 0x1101 \
42    --message-content 55534243087052890000000000000cff020000000000000000000000000000
43
44 Examples of devices based on AM7XXX are:
45
46   - Acer Series C pico projectors (C20 C110 C112 C120):
47       * http://www.acer.it/ac/it/IT/content/models/projector-c
48       * http://support.acer.com/product/default.aspx?modelId=3888
49     
50   - Philips/SagemCom PicoPix projectors (PPX 1020, PPX 1230, PPX 1430, PPX
51     1630):
52       * http://www.philips.co.uk/c/pocket-projector/179840/cat/
53       * http://www.sagemcom.com/EN/products/image-sound/pico-video-projectors.html
54
55   - CEL-TEC MP-01:
56       * http://www.kabelmanie.cz/miniprojektor-cel-tec-mp-01/
57
58   - Other unbranded projectors:
59       * http://www.dealextreme.com/p/portable-home-office-mini-usb-2-0-lcos-projector-16-9-45019
60
61   - HannSpree digital picture frames (but it has not been verified yet if
62     those can be actually used as USB displays):
63       * http://europe.hannspree.net/onweb.jsp?prod_no=3333333621&webno=3333333317
64       * http://europe.hannspree.net/onweb.jsp?prod_no=33333337:4&webno=3333333317
65
66 Maybe other devices reported as supporting "Display over USB (DoUSB)" like
67 Acer K330 or some Optoma projectors could be used with this library, but
68 this needs still needs to be verified.