- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我是 Nodejs 的新手,所以如果我问任何简单的问题,请不要让仇恨流过你。
我正在尝试在树莓派3上使用nodejs来控制两个电机。我收到异步任务不是函数错误。我正在寻找答案,但我发现没有一个对我有用。我可以用一只手来做这个。
以下是代码:The error
var express = require('express'),
http = require('http'),
path = require('path'),
async = require("async"),
rpio = require('rpio'),
app = express();
app.set('port', 3000);
app.use(express.static(path.join(__dirname, '/static')));
var http = http.createServer(app).listen(app.get('port'), function() {
console.log('Serverul started on port ' + app.get('port'));
});
var io = require('socket.io')(http);
var tank = {
motors: {
leftFront: 11,
leftBack: 12,
rightFront: 13,
rightBack: 15
},
init: function() {
rpio.open(this.motors.leftFront, rpio.OUTPUT);
rpio.open(this.motors.leftBack, rpio.OUTPUT);
rpio.open(this.motors.rightFront, rpio.OUTPUT);
rpio.open(this.motors.rightBack, rpio.OUTPUT);
},
moveForward: function() {
async.parallel([
rpio.write(this.motors.leftFront, rpio.HIGH),
rpio.write(this.motors.rightFront, rpio.HIGH)
]);
},
moveBackward: function() {
async.parallel([
gpio.write(this.motors.leftBack, 1),
gpio.write(this.motors.rightBack, 1)
]);
},
moveLeft: function() {
gpio.write(this.motors.leftFront, 1);
},
moveRight: function() {
gpio.write(this.motors.rightFront, 1);
},
stop: function() {
async.parallel([
rpio.write(this.motors.leftFront, rpio.LOW),
rpio.write(this.motors.leftBack, rpio.LOW),
rpio.write(this.motors.rightFront, rpio.LOW),
rpio.write(this.motors.rightBack, rpio.LOW)
]);
}
};
io.sockets.on('connection', function(socket) {
socket.on('move', function(direction) {
switch(direction) {
case 'up':
tank.moveForward();
break;
case 'down':
tank.moveBackward();
break;
case 'left':
tank.moveLeft();
break;
case 'right':
tank.moveRight();
break;
}
});
socket.on('stop', function(dir) {
tank.stop();
});
});
tank.init();
最佳答案
根据文档,对 write 和 open 的
rpio
调用都是同步调用。您根本不需要使用异步,但如果您确实想这样做,那么您需要将调用包装在接受回调的函数中,因为这就是异步所期望的。简单的例子:
// wrap your synchronous function
function wrap(fn) {
var args = Array.prototype.slice.call(arguments, 1);
return function (cb) {
try{
var results = fn.apply(null, args);
cb(null, results);
} catch(e) {
cb(e);
}
}
}
async.parallel([
wrap(rpio.write, this.motors.leftFront, rpio.LOW),
wrap(rpio.write, this.motors.leftBack, rpio.LOW),
wrap(rpio.write, this.motors.rightFront, rpio.LOW),
wrap(rpio.write, this.motors.rightBack, rpio.LOW)
]);
/* 回复评论 */在您的原始代码中,您使用 rpio,但随后在您的评论中您说您正在使用 pi-gpio。库很重要,而且两者的 API 也非常不同。例如,rpio 函数都是同步的,而 pi-gpio 函数已经都是异步的。在 pi-gpio 版本中,您必须为所有对 pi-gpio 函数的调用提供回调(就像您的错误告诉您的那样)。
修改现有代码的最简单方法是大量使用函数参数绑定(bind)。例如,在 moveForward 函数中,您当前有:
moveForward: function(){
async.parallel([
rpio.write(this.motors.leftFront, rpio.HIGH),
rpio.write(this.motors.rightFront, rpio.HIGH)
]);
}
您需要将前两个写入参数绑定(bind)到 gpio.write 函数,该函数将返回一个函数,该函数接受最后一个预期参数(在本例中是提供的),即回调。 gpio.write 采用签名 gpio.write(pin, highLow, callback)
,因此执行以下操作:
moveForward: function(){
async.parallel([
gpio.write.bind(this.motors.leftFront, rpio.HIGH),
gpio.write.bind(this.motors.rightFront, rpio.HIGH)
]);
}
应该有你想要的结果。虽然from the docs您仍然应该考虑如何/何时关闭引脚。
关于javascript - Node.js 异步并行 TypeError : task is not a function on raspberry pi,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41943563/
这个问题在这里已经有了答案: Why use async and return await, when you can return Task directly? (8 个答案) 关闭 6 年前。
这个问题在这里已经有了答案: Are the days of passing const std::string & as a parameter over? (13 个答案) 关闭 8 年前。 我
我有一组标记为执行的通用任务。当任务完成时(使用 Task.WaitAny ),我将其添加到 ObservableCollection 中. 但是,问题出在 Task.WaitAny(...)行,上面
经过几个小时的努力,我在我的应用程序中发现了一个错误。我认为下面的 2 个函数具有相同的行为,但事实证明它们没有。 谁能告诉我引擎盖下到底发生了什么,以及为什么它们的行为方式不同? public as
这也与 Python 的导入机制有关,特别是与在函数内使用 import 有关。使用 Python 2.7.9 和 Fabric 1.10.0,创建以下三个文件: fabfile.py: from a
我有一个 Web API Controller (ASP.NET Core 5)。我的一些 API 是异步的,而其中一些不是。我接下来的问题是:使用 public **Task** WebApiMet
我们有类似下面的内容 List uncheckItems = new List(); for (int i = 0; i new Task(async () => await Process
我的代码没问题,但我想知道哪种风格更好,你会怎么看,我正在玩异步方法。 让我建立上下文: Parallel.ForEach(xmlAnimalList, async xml => {
这两种使用 await 的形式在功能上有什么区别吗? string x = await Task.Factory.StartNew(() => GetAnimal("feline")); Task m
我刚刚看到 3 个关于 TPL 使用的例程,它们做同样的工作;这是代码: public static void Main() { Thread.CurrentThread.Name = "Ma
考虑以下代码: public void CacheData() { Task.Run((Action)CacheExternalData); Task.Run(() => CacheE
Task> GetTaskDict() { return Task.FromResult(new Dictionary () ); } 此代码无法编译,因为我们无法在 Task> 到 Tas
我正在使用 ASP.NET 5 RC1 _MyPartial @model MyViewModel @using (Html.BeginForm())
当我尝试在 VS Code 中构建 C 任务时,它显示以下消息: 输出仅显示:The task provider for "C/C++" tasks unexpectedly provided a t
一些背景: 基本上归结为我希望能够在当前线程中“执行”任务。为什么? -我有一个任务创建程序例程,有一次我希望任务在后台任务中立即执行,而其他时候我希望使用 IOmniThreadPool 安排任务。
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引起辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the he
我试图将run-sequence添加到我的gulp工作流程中,但是每次尝试执行使用run-sequence的任务时,都会出现此错误: 任务未配置为gulp上的任务。 根据运行序列的来源,这是由以下te
此代码在VS2015中给出了编译时错误 Error CS0266 Cannot implicitly convert type 'System.Threading.Tasks.Task' to 'Sy
我正在尝试通过我的代码通过Google登出: suspend fun signOut(context: Context): Boolean = with(Dispatchers.IO) { t
谁能解释一下这两种说法的区别: Task bTask = backup.BackupCurrentDatabaseAsync() .ContinueWith(_ => CompressArch
我是一名优秀的程序员,十分优秀!