-
Notifications
You must be signed in to change notification settings - Fork 492
add support for ESP32 #220
Comments
are there any updates on that? |
@Ahmed-Talaat I'm experimenting in that branch: https://github.com/proppy/firebase-arduino/tree/esp32 Got it to compile, but still have TLS issue when making the actual request. |
Is there anything in particular that we can help with @proppy ? |
@danielcrowley sure feel free to try out the branch, and let me know if you also get a TLS error ;) |
I got an error.
|
@bestpika yes, you need to checkout https://github.com/arduino-libraries/ArduinoHttpClient in the |
@proppy I do it, but got another error (I use example
So I use WiFiClientSecure to direct send data to |
@proppy MacAddress:37: error: 'Firebase' was not declared in this scope Firebase.begin(FIREBASE_HOST, FIREBASE_AUTH); ^ MacAddress:45: error: 'Firebase' was not declared in this scope Firebase.setFloat("number", 42.0); ^ |
There is any update on this? I've tried to install the branch proposed by @proppy with not luck. There is any way how I could help? |
did anyone get the right solution? my error is: 'Firebase' was not declared in this scope |
@proppy |
That should be easier to implement now that they added an HTTPClient w/ SLL in the ESP32 arduino core that is supposed to match the API for the ESP8266: |
@proppy |
I had to add but for
I don't know how to deal with it |
@blotfi I think my branch was using a patched version of ArduinoHttpClient:
|
@proppy where canI get it so ? |
@blotfi you need to make the same modification that I linked, but even after than there is still an SSL error we need to solve. So it's not working yet. |
@proppy Do you have time to solve the issues? I am in Electrical Engineering / Teacher, so not a really good programmer ;-) |
@proppy Hi, do you plan to start again the https://github.com/proppy/firebase-arduino/tree/esp32 |
@proppy Hi, is there any new dev for ESP32 ? |
Same question, any future support for ESP32? Thanks for all development, I would also be willing to help! |
One good way to support the ESP32 would be to standardize on the Tracking this here: #344. |
@proppy any news regarding ESP32 support? |
@Curclamas I'd welcome some more testing on #353 if you want to give it a try. |
Ola a todos! #include <WiFi.h> const char* ssid = "xxxxxxxx"; // Sua rede WIFI const char* host = "xxxxxxxxxx.firebaseio.com"; //Login firebase String user_path = "usuario";// Usuario cadastrado no firebase database WiFiClientSecure client; //********************** WiFi.begin( ssid, password ); Serial.print( "connecting" ); delay(2000);
} Fonte: https://www.mgo-tec.com *****FIREBASE |
Worked just fine! Thanks lucianoracing! |
can you please translate instructions into english? |
using the official esp32 arduino core:
https://github.com/espressif/arduino-esp32
The text was updated successfully, but these errors were encountered: