- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
当号码第一次从 NodeJS 发送到 Arduino 时,我看到以下错误:
Error Resource temporarily unavailable Cannot lock port
我使用Linux。
我首先更新了一些值(在网络服务器中)并且串行端口捕获了该值,这样我就可以看到Arduino串行监视器中的值。
但是当我再次更新某个值后,会导致错误。
这是 NodeJS 代码:
var serialport = require('serialport'),
SerialPort = serialport.SerialPort,
portName = '/dev/ttyACM0',
portConfig = {
baudRate: 9600,
// call myPort.on('data') when a newline is received:
//parser: serialport.parsers.readline('\n')
};
... (code) ...
pool.getConnection(function(err,connection)
{
var sql = "update value set temperature=? , humidity=? where idx=?";
connection.query(sql,[temperature,humidity,idx],function(err,result)
{
console.log(result);
if(err) console.error("update errrr : ",err);
var myPort = new SerialPort(portName, portConfig);
myPort.on('open', openPort);
function openPort() {
var temp = temperature;
console.log('port open');
console.log('baud rate: ' + myPort.options.baudRate);
function sendData() {
//myPort.write(temp.toString()); for(var i=0; i<temp.length; i++) {
myPort.write(new Buffer(temp[i], 'ascii'), function(err, results) {
});
}
console.log('Sending ' + temp + ' out the serial port');
} setTimeout(sendData, 500); myPort.close
}
res.redirect('/');
connection.release();
});
}); });
这是 Arduino 代码:
String inData = "";
int led = 13;
void setup()
{
pinMode(led, OUTPUT);
Serial.begin(9600);
analogReference(INTERNAL);
}
void loop()
{
while (Serial.available() > 0) {
long received = Serial.parseInt();
inData.concat(received);
Serial.println(inData);
}
inData = "";
}
最佳答案
我找到了答案
function openPort() {
var temp = temperature;
console.log('port open');
console.log('baud rate: ' + myPort.options.baudRate);
setTimeout(sendData, 1);
function sendData() {myPort.write(new Buffer(temp, 'ascii'), function(err, results) {});
console.log('Sending ' + temp + ' out the serial port');
myPort.close(function () {console.log('port Closed.');});
}
}
关于node.js <-> 带串口的 arduino。错误 资源暂时不可用 无法锁定端口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44344459/
我正在使用 typedef 的第三方库s byte至 char . (这很糟糕,因为 char 可能是 signed 或 unsigned,具体取决于编译器的选择)。 不幸的是typedef已经溢出到
每当我做一个工作任务时,我都会在git中创建一个本地分支,然后我需要在实际工作之前修改一堆配置文件(主要包含数据库的连接字符串)以设置为我的本地环境。我不想在完成任务后将这些更改推送到存储库。 实际上
我有一个生成大量可能状态的方法,当使用 , 链接它时与(有条件的)fail或 tactic no_tac ,由此产生的组合方法需要很长时间才能终止并导致 Isabelle 界面滞后。但是,当使用两个
为了从转储中恢复数据库,我想暂时禁用数据库所有表中的所有约束,我清空了这些表的内容(postregsql 8.3)。 是否有一种安全的方法来修改 pg_constraint 表中的字段,从而轻松绕过约
在 my usecase我正在尝试同步两个 Elasticsearch 索引。由于版本控制,这实际上是 quite simple 。不过,我想在这样做的同时随时继续写作。 好的,我想按时间顺序执行的步
我需要在 Symfony (1.3.8) 支持的网站上执行升级/增强。该站点将至少离线几天。有谁知道如何使用 Symfony 框架设置“临时离线”页面? 最佳答案 以下是来自 A Gentle Int
我正在为 UIAlertView 创建一个包装器(我知道 UIAlertController 和一些已经存在的包装器,它也用于教育目的)。 假设它看起来像这样(非常简短的版本): @interface
一点背景—— 我运行一个使用 Java 运行的游戏服务器,以及一个使用 PHP (phpbb) 运行的论坛。我将游戏和论坛账号关联起来,这样在游戏中更改密码会自动更改论坛账号的密码。这两个系统使用不同
我在我的 System76 Oryx 笔记本电脑上使用 Ubuntu 16.04。触控板非常敏感,所以我曾经使用 Fn+F1 禁用它。这在 18.04 中不再起作用。我环顾四周,发现: synclie
当我对 Haskell 程序进行原型(prototype)设计时,我总是会收到数百条这样的警告(不是开玩笑): /Users/bob/SourceCode/course/is/expriment/Li
据我了解,如果我想在我的 EF6 应用程序中使用延迟加载,我应该将我的关系编码为这样,最后两项标记为虚拟: public class Test { public int TestId { ge
我正在一个有2d map 的项目中: QMap > slot_pic; 我设置了一个表来初始化值: slot_pic[0][0] = QPixmap("path..."); slot_pic[1][
我刚刚修改了 cytoscape.js 的示例(“动画 BFS”)并添加了一些节点: $(function(){ // on dom ready $('#cy').cytoscape({ style:
UIScroll View 让我在一页内容太多时声明一个可滚动区域。奇怪的是,有问题的 ScrollView 在 X 轴上的行为符合预期,不允许任何滚动。不幸的是,Y 轴——需要滚动的地方——不会将允
我是 Maven 新手,而且我也没有太多使用 Eclipse 的经验。 要从 Eclipse 中的构建中排除 java 文件,我右键单击这些文件并选择“构建路径”->“排除”。这对于 Eclipse
我从 GLM 库的 #pragma message 收到许多消息。有没有办法抑制这些,最好是暂时的(只针对那个库)? 最佳答案 我能想到的最佳解决方案是将 g++ 的输出通过管道传输通过过滤器,即 g
在现代浏览器上下文中的 JS 中(特别是 Chrome,但任何答案都很有趣)我如何临时覆盖 Object.prototype.toString 或任何其他 native 代码方法,以便新实现实际接收通
我是一名优秀的程序员,十分优秀!