You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is the code generated with just a variable initialized as an array with 3 integers entered. It's invalid Arduino code and won't compile. It should come out as below.
``int adf[3] = {0, 1, 2};
void setup() {
}
void loop() {
}``
The text was updated successfully, but these errors were encountered:
``int[3] adf;
void setup() {
}
void loop() {
adf = {0, 1, 2};
}``
This is the code generated with just a variable initialized as an array with 3 integers entered. It's invalid Arduino code and won't compile. It should come out as below.
``int adf[3] = {0, 1, 2};
void setup() {
}
void loop() {
}``
The text was updated successfully, but these errors were encountered: