forked from arhi/EthernetSPI2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Bogdan Kecman
committed
Jul 16, 2020
0 parents
commit bf63ae2
Showing
20 changed files
with
3,901 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
|
||
Alberto Panu https://github.com/bigjohnson | ||
Alasdair Allan https://github.com/aallan | ||
Alice Pintus https://github.com/00alis | ||
Adrian McEwen https://github.com/amcewen | ||
Arduino LLC http://arduino.cc/ | ||
Arnie97 https://github.com/Arnie97 | ||
Arturo Guadalupi https://github.com/agdl | ||
Bjoern Hartmann https://people.eecs.berkeley.edu/~bjoern/ | ||
chaveiro https://github.com/chaveiro | ||
Cristian Maglie https://github.com/cmaglie | ||
David A. Mellis https://github.com/damellis | ||
Dino Tinitigan https://github.com/bigdinotech | ||
Eddy https://github.com/eddyst | ||
Federico Vanzati https://github.com/Fede85 | ||
Federico Fissore https://github.com/ffissore | ||
Jack Christensen https://github.com/JChristensen | ||
Johann Richard https://github.com/johannrichard | ||
Jordan Terrell https://github.com/iSynaptic | ||
Justin Paulin https://github.com/interwho | ||
lathoub https://github.com/lathoub | ||
Martino Facchin https://github.com/facchinm | ||
Matthias Hertel https://github.com/mathertel | ||
Matthijs Kooijman https://github.com/matthijskooijman | ||
Matt Robinson https://github.com/ribbons | ||
MCQN Ltd. http://mcqn.com/ | ||
Michael Amie https://github.com/michaelamie | ||
Michael Margolis https://github.com/michaelmargolis | ||
Norbert Truchsess https://github.com/ntruchsess | ||
Paul Stoffregen https://github.com/PaulStoffregen | ||
per1234 https://github.com/per1234 | ||
Richard Sim | ||
Scott Fitzgerald https://github.com/shfitz | ||
Thibaut Viard https://github.com/aethaniel | ||
Tom Igoe https://github.com/tigoe | ||
WizNet http://www.wiznet.co.kr | ||
Zach Eveland https://github.com/zeveland | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
= Ethernet Library for ESP32-CAM using HSPI interface and W5500 module = | ||
|
||
Allow ESP32-CAM module to talk to W5500 Ethernet module trough HSPI | ||
as SPI (VSPI) pins are used to connect the camera module | ||
|
||
Assembled from | ||
- Arduino Ethernet library | ||
- ESP32-CAM example "CameraWebServer" | ||
|
||
My work - public domain | ||
Whatever is copied from those two is whatever their licence is | ||
|
||
|
||
Hardware | ||
ESP32-CAM AI-Thinker module (changing the CAMERA PINS should work with any other esp32-cam, but I have not tested) | ||
W5500 Ethernet module (I removed the pieces for 5100 and 5200 from the library as I don't need them) | ||
|
||
GPI0 to GND and then reset to program | ||
GPI1 and GPI3 to your TX, RX uart for programming | ||
You need to disable power to the W5500 in order to program ESP32 (no idea why) | ||
|
||
ESP32-CAM -> W5500 | ||
GPIO12 -> MISO | ||
GPIO13 -> MOSI | ||
GPIO14 -> SCLK | ||
GPIO2 -> SCS | ||
GND -> GND | ||
|
||
I am powering both from same externam 5V source | ||
|
||
Since GPIO2 is used for chip select this should not affect SD card operations | ||
as SD card is also using HSPI spi interface | ||
|
||
BASED ON Ethernet library v2.0.0 | ||
|
||
Original data: | ||
|
||
== Ethernet Library for Arduino == | ||
|
||
With the Arduino Ethernet Shield, this library allows an Arduino board to connect to the internet. | ||
|
||
For more information about this library please visit us at | ||
http://www.arduino.cc/en/Reference/Ethernet | ||
|
||
== License == | ||
|
||
Copyright (c) 2010 Arduino LLC. All right reserved. | ||
|
||
This library is free software; you can redistribute it and/or | ||
modify it under the terms of the GNU Lesser General Public | ||
License as published by the Free Software Foundation; either | ||
version 2.1 of the License, or (at your option) any later version. | ||
|
||
This library is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
Lesser General Public License for more details. | ||
|
||
You should have received a copy of the GNU Lesser General Public | ||
License along with this library; if not, write to the Free Software | ||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
Oops, something went wrong.