esp32
Here are 2,686 public repositories matching this topic...
Expected behavior
During firmware configuration
Should be easy to select the value for LUA_FLASH_STORE in user_config.h
Options and/or units should be clearly documented so that the setting can be used.
Actual behavior
current default setting is:
//#define LUA_FLASH_STORE 0x10000
Comments
0x10000 corresponds to 64kb in hex, What are the other possibl
WiFiClient setTimeout is documented to accept milliseconds (sane) but value is used as seconds directly (loss of resolution is not sane). Protoype expects u32 instead of f32/f64.
Documentation (inheritance) on value being milliseconds, not seconds
https://www.arduino.cc/reference/en/language/functions/communication/stream/streamsettimeout/
/path/to/sketch.ino: In function 'void loop()':
sk
Solutions
1. Convert INO files to CPP
2. Manual prototype declaration
#ifdef DO_NOT_USE
typedef int32_t delaytype;
void thisShouldNotAppearInTheBinary(delaytype timer); // aded manually
void thisShouldNotAppearInTheBinary(delaytype timer) {
delay(timer);
}
#endif-
Updated
Jun 5, 2020 - C++
Python 3 bindings
Implement Python 3 bindings, so wasm3 can be easily used from Python.
Mongoose OS only currently supports running ESP32 on single core, basically leaving the second core completely unused.
Yes i've seen the thread at:
https://forum.mongoose-os.com/index.php?p=/discussion/comment/2356/#Comment_2356
And ticket #253
I opened this issue as technically this is an issue that only single core devices are supported, and multi-core devices that are supported .
-
Updated
Jun 22, 2020 - C++
-
Updated
May 31, 2020 - Java
-
Updated
Jun 22, 2020 - C++
While I´m generally pretty impressed with the ESP32, I must criticize that the Arduino IDE example BLE_server.ino doesn´t fully work with the BLE_client.ino.
setup() lists the advertised devices, but never connects to one, cuz it chokes at
if (advertisedDevice.haveServiceUUID()...
After analyzing BLEAdvertisedDevice.cpp, as a quick fix I resorted to
if (advertisedDevice.getName() == "UART
Aside from some examples in the readme, and the intro article, there is no documentation for the API. It was only by examining the unit tests, mjs_builtin.c, and reading the v7 documentation through the internet archive, that we were able to figure out how to set and get properties in the VM and make calls into javascript functions with complex values.
This is less than ideal
Do you have any explanation or reference for this formula?
https://github.com/mysensors/MySensors/blob/f4fd69eb131cd5df5572bc9018d3aa2245020123/examples/DustSensorDSM/DustSensorDSM.ino#L136
I'm doing some minor testing whether TinyGSM works with the FreeRTOS Arduino port and running into problems. The data object in waitResponse (an Arduino String) is always empty.
It seems to related to
https://stackoverflow.com/questions/39551941/arduino-string-not-working-inside-freertos-task
and/or
feilipu/Arduino_FreeRTOS_Library#3
Getting rid of the String cla
-
Updated
Jun 14, 2020 - C++
Hello! In my current project, I use ESP32 and display with ILI9341. I would like to use your library, but - as a beginner - I have a lot of trouble with that. Is there somewhere documentation that describes the operation of all library functions? Eg: tft.drawString (.....) has four parameters, but what? What is the text datum? ...
Of course, I will laboriously find explanations in the examp
-
Updated
Nov 3, 2019 - C++
-
Updated
Jun 22, 2020 - C++
on: Arduino 1.8.8 gui, on Windows.
Should you be listed in the Arduino Library Manager? it's not showing for me.
-
Updated
Sep 8, 2019 - C
-
Updated
Jun 20, 2020 - C++
packBEAM should be also implemented in Erlang, so it can be integrated into existing Erlang and Elixir tooling in a easier way.
I hope this is the right way to suggest Wiki (documentation) updates.
Here are few suggestions based on my working with the software:
- I did not know understand about the Flash settings. I did my first compile and upload and it worked great. I then tried to recompile and reset some of the defaults. I did not realize that many of the settings were stored in flash (non volatile) and would no
I tried to add a c-module to my project but the documentation https://micropython-dev-docs.readthedocs.io/en/latest/adding-module.html does not fit.
I am still hanging on the very first step, adding a module (like esp32/mymodule.c)
If I add it to the components.mk in MicroPython_BUILD/components/ the build script will tell me *** No rule to make target
There is still no code in mymodule
-
Updated
Aug 25, 2019 - C++
-
Updated
Feb 18, 2020 - C
Hi
I'm using async-mqtt-client with Basecamp on esp32 boards for a while now.
Until now, i've only subscribed to boolean topics.
Now I'm trying to get numbers. But the thing is, i'm getting more bytes in the char* payload than set on the broker. Seems like the string end char is missing.
Example:
onMqttMessage
66 = f
61 = a
6C = l
73 = s
65 = e
received delaySleep... false
setting de
Improve this page
Add a description, image, and links to the esp32 topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the esp32 topic, visit your repo's landing page and select "manage topics."
Currently comment on runout sensor configuration says:
which is quite confusing and not very informative for regular user. As we test filament sensor status by M119 command It should clearly say when filament present on M119 we should see either "open" or "TRIGGERED" status and we can flip FIL_RUNOUT_INVERTING otherwise. Nobody really