This is my first attempt in using the PlatformIO IDE and my first post here. I copied the source from the Arduino IDE and made the necessary changes. I have not been able to find the cause of the parsing error shown below. Ideas please?
; PlatformIO Project Configuration File
;
; Build options: build flags, source filter
; Upload options: custom upload port, speed and extra flags
; Library options: dependencies, extra library storages
; Advanced options: extra scripting
;
; Please visit documentation for the other options and examples
; https://docs.platformio.org/page/projectconf.html
[env:uno]
platform = atmelavr
board = uno
framework = arduino
void setup(){
Serial.begin(9600);
pinMode(13, OUTPUT); // Usaremos el pin 13 como salida. Los demás puertos son entradas por defecto.
// pinMode(2, PULLUP); // Definimos al pin 2 como entrada con una resistencia pull-up
// servo.atach(9); // Si hemos declarado un objeto de clase Servo ahora especificamos que el servo estará conectado al puerto
puerto 9.
}
void loop(){
digitalWrite(13, HIGH);
delay(1000);
digitalWrite(13, LOW);
delay(1000);
// Al llegar aquí, el Arduino volverá a la primera línea y comenzará a ejecutar todas las instrucciones nuevamente.
}