Private Sub AppStart
NoReadingTimer.Initialize("NoReadingTimer_Tick",1000) 'prevent read same card within 5 seconds
RandomDisplayTimer.Initialize("RandomDisplayTimer_Tick",1000) 'display hello at random positions if no activity within 30 seconds
NoReadingTimer.Enabled = True
RandomDisplayTimer.Enabled = True
RFID.Initialize(9600,2,3)
Buzzer.Initialize(4,Buzzer.MODE_OUTPUT) 'changed to pin 8 and 11, nothing changed
Astream.Initialize(RFID.Stream ,"ReadRFID","RFIDerr")
Serial1.Initialize(9600)
ssd.InitializeI2C(5, 0x3c)
DisplayGreetings '>>> loop from here, even if i remove delay
Delay(2000)
DisplayStarting
Delay(1000)
DisplayPleaseProximate
Delay(1000) '>>> to here
BeepClick ' <<<buzzer beebs forever, if i comment this line and beep subs it works ok, but with no beeps
End Sub