Forum Replies Created
-
AuthorPosts
-
Hi Leonardo,
GPIO15 is the standard CS, and it’s used for SD, so you must change it.
Bye RenzoHi 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
Hi Newsoftman,
I think you must attach your code to help you.
ESPsyncWebServer uses the response to add the header, so if you post your code we tell you the correct position.response->addHeader("Location",String ("http://")+"192.168.1.80");
I think you can find some information also here
Web server with esp8266 and esp32: multi purpose generic web server – 3There is the ESP8266webserver and ESPAsyncWebServer implementation.
Bye Renzo
Here you can find more information,
https://playground.arduino.cc/Code/AvailableMemory/
if you need more info write andi try to give you other examples.
Bye RenzoHi Melis,
probably there is a memory leak.
Check the memory usage.
Bye RenzoThe Library for E220 is released. You can find it from library manager and GitHub.
Bye RenzoThe Library for E220 is released. You can find it from library manager and GitHub.
Bye RenzoHi Usillante,
I think LLCC68 and sx1276 are incompatible, and I know that some E32 based on sx1276/sx1278 are challenging to interoperate with other devices because EByte has an internal encrypting algorithm.
Bye RenzoHi Daniel,
I release the library.I don’t know if It’s possible, but if you do a copy of the library and change the class name I think It’s possible.
Bye Renzo
Hi George,
you can find the explanation of the configuration here.
Bye RenzoHi George,
read the comments on sketch, that a configuration for esp8266, and you have arduino and esp32.
Bye RenzoHi Daniel,
I fix the problem, and now work; I will release the new version with a working example soon.No, sorry, switching the library after compiling isn’t possible for the structure of the library.
Bye RenzoHi George,
I think you can follow these steps.First, check the complete wiring (all pins, not M0 and M1 to GND and 3.3v). You can find the connection schema in this article.
Ebyte LoRa E32 device for Arduino, esp32 or esp8266: library – 2
Then understand the communication type you need
Ebyte LoRa E32 device for Arduino, esp32 or esp8266: fixed transmission – 4
And finally, configure the device.
EByte LoRa E32 Web Manager: description, configure and demo (esp8266, esp32) – 2
Change only the wiring from one device and another.
Bye RenzoHi don,
don’t worry It remove only the Less secure app because It want to standardize the use of Password Application, the other way to get EMailSender put to work.You can find information about the use of Application password in the article
Send email with attachments: Arduino SAMD boards (WiFiNINA) – 3Bye Renzo
Hi Grzegorz,
when you use INPUT It expects that the default state is LOW, to set an input pin to low you must add a pull-down resistor on your circuit.
Bye Renzo -
AuthorPosts