-
Updated
Jul 1, 2020 - C++
arduino-library
Here are 1,978 public repositories matching this topic...
-
Updated
Jun 27, 2020 - C++
The speed commands (s+ and s-) are reversed in this example. Just needs the 1.2 and 0.8 multipliers swapping around. Thanks for a great library.
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
Jun 30, 2020 - C++
-
Updated
May 3, 2020 - C++
-
Updated
Mar 9, 2020 - C++
Describe the bug
When serial output is enabled each line is started with [0m (shown on arduino serial monitor)
To Reproduce
Steps to reproduce the behavior:
- Install Arduino
- Upload a sketch containing remote debug with serial output enabled
- Look in the serial monitor
Expected behavior
A line on the serial monitor should not start with [0m
Screenshots
If appl
-
Updated
Apr 13, 2018 - Shell
-
Updated
Jun 17, 2020 - C++
-
Updated
Jul 1, 2020 - C
-
Updated
Jun 23, 2020 - C++
-
Updated
Jun 8, 2020 - C++
-
Updated
Mar 21, 2020 - C++
I have 20 XBee-PRO S1 that I have burnt Digimesh 2.4 Firmware & all seems good. I will be controlling all 20 remote DIO0-2 pins from a commander xbee/arduino, + your lib.
Which Series|X|_Tx example should I be following?
I thought that Series1/S1 were synonyms, but Series2_Tx seems to be the one that works,... on S1 hardware.
-
Updated
May 19, 2020 - C++
-
Updated
May 26, 2020 - C++
-
Updated
May 27, 2020 - C++
-
Updated
Jan 10, 2020 - C++
-
Updated
Apr 30, 2020 - C++
-
Updated
Oct 3, 2019 - C++
Describe the bug
a freefont and ssd1306_print8 calls ssd1306_write8 which uses fixedfont-width to do line break :-(
size_t ssd1306_write8(uint8_t ch)
{
...
else if ( (ssd1306_cursorX > ssd1306_lcd.width - s_fixedFont.h.width) || (ch == '\n') )
Please complete the following information:
- library version: 1.7.21 installed via Arduino IDE
- LCD display type: cheap 1
-
Updated
Feb 19, 2020 - C++
-
Updated
May 31, 2020 - C++
-
Updated
Jun 30, 2020 - C
Improve this page
Add a description, image, and links to the arduino-library topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the arduino-library topic, visit your repo's landing page and select "manage topics."
https://github.com/Links2004/arduinoWebSockets/blob/c038f100d68b8e5d0a96f25dd1609ff28592b02f/src/WebSocketsServer.h#L128
I need to override default handleHeader to support for POST/OPTIONS other methods since running a simple web server on top of WebSocket one.
I have requested in the past that virtual is added to handleNonWebsocketConnection but now realized same is needed for handleHeader,