- This topic has 4 replies, 2 voices, and was last updated 3 years, 8 months ago by .
- You must be logged in to reply to this topic.
Hello, I need to connect an ESP 32 CAM with MB in an EBYTE E19 915 mhz, my goal would be to take pictures and send via lora to a gateway.
If anyone can help me with connecting the wires for communication between the two I would be grateful.
diagrams and objects.
Hi Leonardo,
you can use a custom SPI interface with the relative pin
/*
Default SPI
#define HSPI_MISO 12
#define HSPI_MOSI 13
#define HSPI_SCLK 14
#define HSPI_SS 15
*/
SPIClass * hspi = NULL;
void setup() {
hspi = new SPIClass(HSPI);
// sck, miso, mosi, ss
hspi->begin(HSPI_SCLK, HSPI_MISO, HSPI_MOSI, 16);
}
In the example, I use the same SPI pin but a dedicated CS for activation.
I didn’t test It but I think It’s ok.
As you can see in the pinout on the same SPI pins there is the SD.
Bye Renzo
It is true ?
Hi Leonardo,
GPIO15 is the standard CS, and it’s used for SD, so you must change it.
Bye Renzo
More
Just like a well-organized workbench, this website uses cookies to function properly and efficiently.
🛠️ The Essentials (Necessary): Some cookies are categorized as necessary and are stored on your browser because they are critical for the basic working of the site.
📊 The Analytics (Third-party): We also use third-party cookies to help us analyze traffic and understand which projects you like the most. These are stored only if you give us the green light.
You can choose to opt-out, but keep in mind that disabling them might make the site experience a bit less "smooth".
| Cookie | Duration | Description |
|---|---|---|
| cookielawinfo-checkbox-analytics | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics". |
| cookielawinfo-checkbox-functional | 11 months | The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional". |
| cookielawinfo-checkbox-necessary | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary". |
| cookielawinfo-checkbox-others | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other. |
| cookielawinfo-checkbox-performance | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance". |
| viewed_cookie_policy | 11 months | The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data. |
