picocalc_keyboard.ino: wait a bit before initializing i2c

fixes stm32 not showing up in i2c bus when ds3231 RTC board is added.
This commit is contained in:
prokrypt 2025-04-13 01:24:03 -07:00 committed by GitHub
parent 77695bb5be
commit ae0a42e11a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -404,6 +404,8 @@ void setup() {
digitalWrite(PA13, LOW);
reg_init();
delay(10);
Serial1.begin(115200);
Wire.setSDA(PB9);