File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
hardware/arduino/cores/arduino Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -71,14 +71,8 @@ class Stream : public Print
71
71
// initial characters that are not digits (or the minus sign) are skipped
72
72
// integer is terminated by the first character that is not a digit.
73
73
74
- long parseInt (char skipChar); // as above but the given skipChar is ignored
75
- // as above but the given skipChar is ignored
76
- // this allows format characters (typically commas) in values to be ignored
77
-
78
74
float parseFloat (); // float version of parseInt
79
75
80
- float parseFloat (char skipChar); // as above but the given skipChar is ignored
81
-
82
76
int readBytes ( char *buffer, size_t length); // read chars from stream into buffer
83
77
// terminates if length characters have been read or timeout (see setTimeout)
84
78
// returns the number of characters placed in the buffer (0 means no valid data found)
@@ -89,6 +83,12 @@ class Stream : public Print
89
83
90
84
// Arduino String functions to be added here
91
85
86
+ protected:
87
+ long parseInt (char skipChar); // as above but the given skipChar is ignored
88
+ // as above but the given skipChar is ignored
89
+ // this allows format characters (typically commas) in values to be ignored
90
+
91
+ float parseFloat (char skipChar); // as above but the given skipChar is ignored
92
92
};
93
93
94
94
#endif
You can’t perform that action at this time.
0 commit comments