Hello,
I'm trying to display the # 1 splash screen as a way to run scripts and batch command. Bat command works fine,but scripting doesn't work. What problems do occur in python script? Please reproduce it and provide something of comments.
[Batch Command Execution : OK]
[Scripting Execution : NG]
It looks last command as WriteRgbEnable fails.
Python script :
---
from dlpc347x.dual.commands import *
a=WriteRgbLedEnable(0,0,0)
ReadRgbLedEnable()
print(a)
b=WriteInputImageSize(1920,1080)
print(b)
c=WriteDisplaySize(1920,1080)
print(c)
d=WriteSplashScreenSelect(1)
print(d)
e=WriteOperatingModeSelect(OperatingMode.SplashScreen)
print(e)
f=WriteSplashScreenExecute()
print(f)
WriteDelay(5000)
g=WriteRgbLedEnable(1,1,1)
print(g)
---
The results :