向蓝牙发送消息时发布延迟的最佳方法是哪种?

时间:2016-09-24 06:11:46

标签: android bluetooth bluetooth-lowenergy java-threads

我想向蓝牙发送五个数据。第一个打开,第二个打开,第三个打开,依此类推......我希望打开和关闭之间的延迟(约1秒)。哪个是最好的。目前,我在Thread类中使用sleep

   for (int i=1;i<5;i++) {
            try {
                if(i%2==0){
                    send(1);
                    Thread.sleep(500);
                }
                else{          
                    send(0);
                    Thread.sleep(500);
                }

            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        } 

0 个答案:

没有答案