This commit is contained in:
2021-11-30 16:03:06 +01:00
parent a9e6126e8f
commit e88638c146
3 changed files with 7 additions and 55 deletions

View File

@@ -135,7 +135,6 @@ int Scroller::GetNumberOfLines()
int Scroller::AddLine(String line)
{
_Lines[_nlines] = line;
//SetParameters(_nlines);
return _nlines++;
}
@@ -143,7 +142,6 @@ int Scroller::AddLines(String* lines,int nlines)
{
for (int i=0; i < nlines; i++) {
_Lines[i] = lines[i];
//SetParameters(i);
}
_nlines = nlines;
@@ -266,11 +264,6 @@ void Scroller::TurnOff()
_off = true;
}
void Scroller::SetColors(uint16_t *colors)
{
_colors = colors;
}
void Scroller::loop(ulong tick)
{
if (_off) return;