Board Package for Logic Green LGT8F328P LGT8F328D and LGT8F88D - dbuezas/lgt8fx
github.com
I ran the blink program and it blinks...
The variants are these:
Checking with B4R, blink program, the code is
B4X:
Sub Process_Globals
'These global variables will be declared once when the application starts.
'Public variables can be accessed from all modules.
Public Serial1 As Serial
Private tmr As Timer
Private pin13 As Pin
Private state As Boolean = False
End Sub
Private Sub AppStart
Serial1.Initialize(115200)
Log("AppStart")
tmr.Initialize("tmr_Tick",1000)
pin13.Initialize(13,pin13.MODE_OUTPUT)
tmr.Enabled = True
End Sub
Sub tmr_Tick
state = Not(state)
pin13.DigitalWrite(state)
Log(state)
End Sub
I found the board but the models are not the same:
Running with any of them I get the same error:
Compiling & deploying Ino project (LGT8F328 - COM7) Error
Error: Must specify exactly one sketch file
Have you tried a full web search for "arduino Error: Must specify exactly one sketch file"? [DuckDuck Search]
There are several instances of this error, some with solutions. Without knowing much about your project and setup, I can't say if any might the fix you need though.
This does seem to be an Arduino environment issue rather than a specific B4R problem.
Have you tried a full web search for "arduino Error: Must specify exactly one sketch file"? [DuckDuck Search]
There are several instances of this error, some with solutions. Without knowing much about your project and setup, I can't say if any might the fix you need though.
This does seem to be an Arduino environment issue rather than a specific B4R problem.
Trust me that I had searched the web before posting, and that I found no relevant solution there, the fact that the variants are different from what I have in Arduino IDE is for sure relevant to B4R.