在arduino中拆分字符串以滚动LCD屏幕

时间:2014-06-15 05:10:50

标签: c string split arduino

您好我想弄清楚如何分割以下LCD显示代码以实现滚动LED效果。但是当我尝试使用Substring函数时,我得到了错误"类字符串没有名为Substring的成员"

void setup()
{
    lcd.init(); 
    }
void loop()
{
for(int i = 0; i < 20; i++) { 
  lcd.clear ();
lcd.backlight();
    lcd.setCursor(i, 1);
    String printy = "Hello World         ";
    String printy1 = printy.SubSting(0, 20-i);
    String printy2 = printy.SubSting(20-i, 20);
    lcd.print(printy1);
delay(500);
}
}

1 个答案:

答案 0 :(得分:1)

如果我正确拼写字符串并放入&#34; substring&#34;这会有所帮助而不是&#34;取代&#34;,对不起。