Arduino服务器和Android客户端我想要切换按钮状态取决于来自服务器的字符串反馈
我试过这个但是没有用
以下这段代码在一周之前是我没有改变任何东西,但现在我遇到了问题
Arduino的:
if (packetBuffer[0]=='3')
{
if (buttonstate == HIGH)
{
Udp.beginPacket(Udp.remoteIP(),Udp.remotePort());
Udp.write("on");
Udp.endPacket();
}
else
{
Udp.beginPacket(Udp.remoteIP(),Udp.remotePort());
Udp.write("off");
Udp.endPacket();
}
}
机器人:
coming = new String(recd.getData());
Toast.makeText(getApplicationContext(),coming,Toast.LENGTH_LONG).show();
textView = (TextView)findViewById(R.id.textView);
textView.setText(coming);
if (coming=="on")
{
apf.setChecked(true);
}
else if (coming=="off")
{
apf.setChecked(false);
}
d1.close();