我正在使用node.js来执行外部文件(已编译的cpp)。如果我自己执行该文件,该程序可以正常工作。我应该得到以下输出:
得到回复534,往返延迟:9569
我想使用websokets获取值并在网页上显示。不幸的是,当从node.js运行程序时,我有以下输出:
stdout:stderr:exec错误:null 我不明白发生了什么,为什么如果我从命令行运行应用程序,我得到了所需的输出?
谢谢你,请原谅我这个愚蠢的问题!
更改执行文件的方式后,我得到以下输出:
stdout:stderr:exec错误: 139
我所做的改变是:
exec('sudo /home/pi/gitwork/RF24/RPi/RF24/examples/light -m 1',
function (error, stdout, stderr) {
socket.emit("response");
console.log('stdout: ' + stdout);
console.log('stderr: ' + stderr);
if (error !== null) {
console.log('exec error: ' + error.code);
}
server.js
function sendMessage(socket){
console.log("execute app");
exec.execFile('/home/pi/gitwork/RF24/RPi/RF24/examples/light',
['-m', 1],
function (error, stdout, stderr) {
socket.emit("response");
console.log('stdout: ' + stdout);
console.log('stderr: ' + stderr);
if (error !== null) {
console.log('exec error: ' + error.code);
}
});
}
io.sockets.on('connection', function (socket) {
socket.on('get', function (data) {
console.log("get received");
sendMessage(socket);
});
});
light.cpp
bool switchLight(int action){
radio.startListening();
bool timeout = false;
while ( ! radio.available() ) {
sleep(10);
}
if (radio.available()){
unsigned long got_time=0;
radio.read( &got_time, sizeof(unsigned long) );
printf("Got response %lu, round-trip delay: %lu\n\r",got_time,millis()-got_time);
return true;
}else{
printf("Failed, response timed out.\n\r");
return false;
}
}
int main( int argc, char ** argv){
char choice;
setup();
bool switched = false;
int counter = 0;
while(( choice = getopt( argc, argv, "m:")) != -1){
if (choice == 'm'){
printf("\nOpening the gates...\n");
while(switched == false && counter < 5){
// switched = true;
switched = switchLight(atoi(optarg));
counter ++;
}
}else{
// A little help:
return 4;
printf("\n\rIt's time to make some choices...\n");
}
//return 0 if everything went good, 2 otherwise
if (counter < 5 )
// printf("ok ok ok");
return 0;
else
return 2;
}
}
答案 0 :(得分:0)
我注意到如果我在下面的行中发表评论,那么脚本就可以了。我尝试使用的示例是:http://hack.lenotta.com/arduino-raspberry-pi-switching-light-with-nrf24l01/
这使我检查RF24库(我使用的那个和示例中使用的那个)的差异,看起来他们正在使用不同的库。我会尝试改变它,看看它发生了什么。
radio.read( &got_time, sizeof(unsigned long) );