13
13
14
14
You should have received a copy of the GNU General Public License
15
15
along with this program. If not, see <http://www.gnu.org/licenses/>.
16
-
16
+
17
17
Author website: http://www.geekfactory.mx
18
18
Author e-mail: ruben at geekfactory dot mx
19
19
*/
29
29
30
30
#ifdef ARDUINO
31
31
#include <Arduino.h>
32
- #ifdef ESP8266
32
+ #if defined ESP8266 || defined ARDUINO_ARCH_ESP32
33
33
#include <pgmspace.h>
34
34
#else
35
35
#include <avr/pgmspace.h>
@@ -260,7 +260,7 @@ extern "C" {
260
260
* @brief Prints a null terminated string to the terminal from flash
261
261
*
262
262
* Displays a string on the terminal. The string should be null terminated.
263
- *
263
+ *
264
264
* This function is designed to be used with strings stored in flash.
265
265
*
266
266
* @param string The string to send to the terminal
@@ -272,7 +272,7 @@ extern "C" {
272
272
*
273
273
* Displays a string on the terminal and moves the cursor to the next line. The
274
274
* string should be null terminated.
275
- *
275
+ *
276
276
* This function is designed to be used with strings stored in flash.
277
277
*
278
278
* @param string The string to send to the terminal
@@ -286,7 +286,7 @@ extern "C" {
286
286
* specifiers (subsequences beginning with '%'), the additional arguments
287
287
* following format are formatted and inserted in the resulting string
288
288
* replacing their respective specifiers.
289
- *
289
+ *
290
290
* This function is designed to be used with strings stored in flash.
291
291
*
292
292
* This function implements it�s own mechanism for text formatting. It doesn�t
0 commit comments