Search found 12 matches

by xvinny
Mon Aug 12, 2019 1:23 pm
Forum: ESP-IDF
Topic: Need help to start WiFi, EThernet, BT and GSM Interfaces in parallel as per requirement
Replies: 4
Views: 6015

Re: Need help to start WiFi, EThernet, BT and GSM Interfaces in parallel as per requirement

Hi, Right now, We are developing GSM based component for our product which is PPP based component and we have successfully verified it with multiple test-cases. So, I have also looked into LWIP component and found support for PPPoS as well for PPP COMMUNICATION over GSM. So, I am just worried about...
by xvinny
Tue Jun 11, 2019 2:40 pm
Forum: ESP32 Arduino
Topic: Upload Files to REST Web API
Replies: 1
Views: 4096

Re: Upload Files to REST Web API

Anyone can help :?:
by xvinny
Fri May 31, 2019 3:27 pm
Forum: ESP32 Arduino
Topic: Upload Files to REST Web API
Replies: 1
Views: 4096

Upload Files to REST Web API

Hi all, I developed an Web API which exposes some GET and POST methods and I'm using ESP32 to access it. One of the methods is a POST that allows to upload files. This method has two parameters: 1. serial: the serial number of the device 2. file: the file I tested the API with Postman and it is work...
by xvinny
Fri Feb 22, 2019 5:03 pm
Forum: ESP32 Arduino
Topic: ESP32 with MPU6050 via Arduino IDE
Replies: 7
Views: 32804

Re: ESP32 with MPU6050 via Arduino IDE

FrankenApps, I ran into the same problem with MPU6050 and got a bug in the last version of i2c library in arduino-esp32 SDK. In order to apply a workaround until the next official release, you should download (from github.com/arduino-esp32) and replace these four files: - libraries\Wire\Wire.cpp - ...
by xvinny
Thu Oct 18, 2018 4:50 pm
Forum: ESP32 Arduino
Topic: Over the Air firmware upgrades with JFrog Bintray
Replies: 0
Views: 3196

Over the Air firmware upgrades with JFrog Bintray

When we develop our IoT apps, we always have to think about the distribution including updates. Espressif allows us to use the OTA solution, that is suitable when we consider that we will deploy a few number of devices, mainly in local network. When we need a more robust solution, there are not many...
by xvinny
Thu Aug 23, 2018 1:45 pm
Forum: ESP32 Arduino
Topic: ESP32 with MPU6050 via Arduino IDE
Replies: 7
Views: 32804

Re: ESP32 with MPU6050 via Arduino IDE

FrankenApps, I ran into the same problem with MPU6050 and got a bug in the last version of i2c library in arduino-esp32 SDK. In order to apply a workaround until the next official release, you should download (from github.com/arduino-esp32) and replace these four files: - libraries\Wire\Wire.cpp - l...
by xvinny
Fri Aug 17, 2018 2:59 pm
Forum: General Discussion
Topic: GPIO INPUT ONLY
Replies: 2
Views: 4523

Re: GPIO INPUT ONLY

Which pins did you use? Could you post a snippet of your code?
by xvinny
Thu Jul 05, 2018 4:33 pm
Forum: Showcase
Topic: ESP32 with GSM modem - PPP over Serial (PPPoS) client example
Replies: 34
Views: 206709

Re: ESP32 with GSM modem - PPP over Serial (PPPoS) client example

Hi all, I found some problems in the library. It doesn't support you to disconnect (ppposDisconnect) and reconnect (ppposInit) later because it doesn't uninstall the serial driver. I've made a fix for this. Another change is that I created a parameter ConnectionSettings for ppposInit in order to sup...
by xvinny
Wed Mar 21, 2018 3:10 pm
Forum: Showcase
Topic: ESP32 with GSM modem - PPP over Serial (PPPoS) client example
Replies: 34
Views: 206709

Re: ESP32 with GSM modem - PPP over Serial (PPPoS) client example

An update. After much messing around, the solution we've come up with is to leave both interfaces up and to use lwip netif_set_default() to set the default interface based on priority. If you are using standard C sockets, you could alternatively bind() the outgoing socket to a particular IP (again ...