Skip to content

Commit e96db8d

Browse files
committed
Initial commit
0 parents  commit e96db8d

11 files changed

+154
-0
lines changed

.gitignore

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Ignore list for KiCAD Projects
2+
# private directories
3+
mynotes
4+
mycosts
5+
3rd-parties-libraries
6+
datasheets
7+
fabrication
8+
kicad5
9+
kicad6
10+
# Temporary files
11+
*.000
12+
*.bak
13+
*.bck
14+
*.kicad_pcb-bak
15+
*.sch-bak
16+
*~
17+
_autosave-*
18+
*.tmp
19+
*-save.pro
20+
*-save.kicad_pcb
21+
fp-info-cache
22+
*/tmp/*
23+
24+
# Netlist files (exported from Eeschema)
25+
*.net
26+
27+
# Autorouter files (exported from Pcbnew)
28+
*.dsn
29+
*.ses

LICENSE.md

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# Debinix Team License Information
2+
3+
Debinix Team uses two different licenses for our files — one for hardware and one for code.
4+
5+
## Hardware
6+
7+
**Debinix Team-created hardware is released under [Creative Commons Non-Commercial Share-alike 4.0 International](http://creativecommons.org/licenses/by-nc-sa/4.0/).**
8+
**Note**: This is a human-readable summary of (and not a substitute for) the [license](http://creativecommons.org/licenses/by-nc-sa/4.0/legalcode).
9+
10+
## You are free to:
11+
12+
**Share** — copy and redistribute the material in any medium or format.
13+
14+
**Adapt** — remix, transform, and build upon the material.
15+
16+
The licensor cannot revoke these freedoms as long as you follow the license terms.
17+
18+
## Under the following terms:
19+
20+
**Attribution** — You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
21+
22+
**NonCommercial** — You may not use the material for commercial purposes.
23+
24+
**ShareAlike** — If you remix, transform, or build upon the material, you must distribute your contributions under the same license as the original.
25+
26+
*No additional restrictions* — You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.
27+
28+
*Notices*:
29+
You do not have to comply with the license for elements of the material in the `public domain` or where your use is permitted by an applicable exception or limitation.
30+
No warranties are given. The license may not give you all of the permissions necessary for your intended use. For example, other rights such as publicity, privacy, or moral rights may limit how you use the material.
31+
32+
33+
## Code
34+
35+
**Debinix Team code, firmware, and software is released under the MIT License (http://opensource.org/licenses/MIT).**
36+
37+
The MIT License (MIT)
38+
39+
Copyright (c) 2022 Debinix Team
40+
41+
Permission is hereby granted, free of charge, to any person obtaining a copy
42+
of this software and associated documentation files (the "Software"), to deal
43+
in the Software without restriction, including without limitation the rights
44+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
45+
copies of the Software, and to permit persons to whom the Software is
46+
furnished to do so, subject to the following conditions:
47+
48+
The above copyright notice and this permission notice shall be included in all
49+
copies or substantial portions of the Software.
50+
51+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
52+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
53+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
54+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
55+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
56+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
57+
SOFTWARE.

README.md

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
![esp8266-usbhost-shield](./images/3d-view-max3421e-esp8266-shield-v1_0.png)
2+
3+
[![GitHub version](https://img.shields.io/github/release/berrak/ESP8266-USBHost-Max3421-Shield.svg?logo=github&logoColor=ffffff)](https://github.com/berrak/ESP8266-USBHost-Max3421-Shield/releases/latest)
4+
[![GitHub Release Date](https://img.shields.io/github/release-date/berrak/ESP8266-USBHost-Max3421-Shield.svg?logo=github&logoColor=ffffff)](https://github.com/berrak/ESP8266-USBHost-Max3421-Shield/releases/latest)
5+
[![GitHub stars](https://img.shields.io/github/stars/berrak/ESP8266-USBHost-Max3421-Shield.svg?logo=github&logoColor=ffffff)](https://github.com/berrak/ESP8266-USBHost-Max3421-Shield/stargazers)
6+
[![GitHub issues](https://img.shields.io/github/issues/berrak/ESP8266-USBHost-Max3421-Shield.svg?logo=github&logoColor=ffffff)](https://github.com/berrak/ESP8266-USBHost-Max3421-Shield/issues)
7+
8+
# The ESP8266 USB Host Shield
9+
10+
The USB Host Shield contains all of the digital logic necessary to implement a full-speed USB 2.0 host controller with your microcontroller.
11+
12+
## USB Host + WiFi for microcontrollers
13+
14+
Add WiFi and the ESP8266 USB host shield and control network devices wireless with standard USB HID devices like a keyboard, mouse, and game controller.
15+
16+
An `ESP8266 D1-mini` and the super easy `ESP8266 USB Host Shield` will let you control other WiFi devices wireless without being forced to dedicate an entire computer for such tasks.
17+
18+
Use the host shield and, for example, a `gaming joystick` to interface with and remotely control `within the capabilities` of the [USB Host Shield 2.0 Library](https://github.com/felis/USB_Host_Shield_2.0/), any microcontroller-based device with WiFi.
19+
20+
## Board main features
21+
22+
The host controller MAX4321E chip uses a four-wire serial interface to communicate with ESP8266. A USB type A female connector supplies 5V as any regular USB port would do. The SPI of 26MHz is fast; forget any sluggish UART communication.
23+
24+
- The shield supplies any attached devices with +5V (VBUS) via the connected ESP8266 USB connector.
25+
- With the ESP8266 USB host shield, there is no risk of wiring it up incorrectly.
26+
- This device comes fully assembled, and there is no need to program the shield itself.
27+
- SPI bus voltage levels are 3.3V, thus compatible with modern microcontrollers.
28+
- The host complies with USB Specification Revision 2.0, i.e., full-/low-Speed 12Mbps/1.5Mbps USB communication.
29+
- The ESP8266 board power the shield and the MAX3421E with 3.3V.
30+
31+
The additional built-in GPIO pins from MAX3421E are not connected, and some other signals with the limited availability of pins on the ESP8266 D1-mini. See the `schematic` for all details. The Arduino library is for another shield implementation with `MAX3421E`, so certain aspects may not work exactly as in the example sketches. However, we have found that most HID devices are generally recognized.
32+
33+
## Suggested items to add to the board
34+
35+
- Wemos/Lolin ESP8266 D1-mini microcontroller.
36+
- Female headers for ESP8266 D1-mini.
37+
- HID devices such as keyboards, mice, gaming joysticks, etc.
38+
39+
Various sellers sell ESP8266 cloned boards on `AliExpress` and `Amazon`. Alternatively, buy the original version of ESP8266 D1-mini at [Lolin](https://lolin.aliexpress.com/store/1331105) official shop.
40+
41+
## Usage
42+
43+
![esp8266-usbhost-shield](./images/ESP8266-usbhost-shield-on-breadboard.jpg)
44+
45+
Add the shield board on top of the ESP8266 D1-mini such that both USB connectors are above each other.
46+
47+
- Confirm that the shield cut-out is above the ESP8266 `RESET button` before connecting power!
48+
49+
Please, see the [Arduino library installation documentation](https://docs.arduino.cc/software/ide-v1/tutorials/installing-libraries), and how-to install the Arduino library [USB Host Shield 2.0](https://github.com/felis/USB_Host_Shield_2.0/).
50+
51+
Verify that the USB host shield library can use the device with the Arduino sketch `USBHID_desc`, found among the many examples.
52+
53+
## Specification for the `ESP8266 USB Host Shield v1.0`
54+
55+
* Operating voltage: 3.3V - (via ESP8266)
56+
* The shield size is 26.5 x 31.5 mm (1.04" x 1.24") and fabricated as a four-layer board for superior signal integrity.
57+
* Board thickness: 1.6 mm (63 mils).
58+
* Formfactor and pinout: Wemos/Lolin ESP8266 D1-mini.
59+
* Weight: 6 gram (0.21 ounce).
60+
* Height: 17.5 mm (0.69")
61+
62+
## Purchase the board
63+
64+
The `ESP8266 USB Host Shield` board is available only fully assembled. `Tindie` has all the latest designed boards.
65+
66+
[![Tindie](./images/tindie-small.png)](https://www.tindie.com/stores/debinix/)
67+
68+
I appreciate your support.
Loading
Loading
1.41 MB
Loading

images/tindie-small.png

21.5 KB
Loading
267 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)