Difference between revisions of "LQFP32"
From RoboWiki
(Created page with "=== Exercises with LQFP32 Mini EVB === Configuration of Arduino IDE: <youtube>1t0vyJ9o7mk</youtube> Connect the device to USB port, open device manager (WIN-X, and select D...") |
m |
||
Line 8: | Line 8: | ||
[[Image:serial_port_device_manager.png]] | [[Image:serial_port_device_manager.png]] | ||
+ | |||
+ | Pinout: [https://raw.githubusercontent.com/dbuezas/lgt8fx/master/docs/boards/pinouts/svg/LGT8F328P-nano.png pinout] | ||
1. Test serial port communication (01_serial.ino): | 1. Test serial port communication (01_serial.ino): |
Revision as of 17:34, 20 October 2022
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:
Pinout: pinout
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);
}