LQFP32
From RoboWiki
Exercises with LQFP32 Mini EVB
Configuration of Arduino IDE:
Connect the device to USB port, open device manager (WIN-X, and select Device Manager), open "Ports", check which serial port has been created for the device:
1. Test serial port communication (01_serial.ino):
void setup() {
Serial.begin(9600);
}
int i = 0;
void loop() {
Serial.print("Hello ");
Serial.println(i++);
delay(1000);
}
2. Test internal LED flashing (02_led_flash.ino):
#define LED 13
void setup() {
pinMode(LED, OUTPUT);
}
void loop() {
digitalWrite(LED, HIGH);
delay(500);
digitalWrite(LED, LOW);
delay(100);
}