问题标签 [intel-edison]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
c - 如何获得自 C 中的程序启动以来经过的毫秒数?
我正在英特尔 Edison 上用 C 语言编写数据记录程序。该程序以不规则但频繁的间隔将制表符分隔的数据行写入日志文件。我想以至少 0.01 秒的精度记录当前时间,或者至少记录自开始以来经过的时间以及数据。
我一直在寻找一个可以帮助我解决这个问题的函数,但我发现的一切只能给我 1 秒的精度。
我怎样才能实现我想做的事情?
node.js - 使用带有 Cumulocity 的 Intel Edison 和 Node.js
我正在寻找一个关于如何通过 Node.js 使用 Intel Edison 和 Cumulocity 的示例。是否有可用的 Node.js 示例代码?
mosquitto - 在 Intel Edison 上构建 Mosquitto 找不到 websockets 库
我已经根据README中的说明成功构建了 libwebsockets 。当我尝试在启用 websockets 的 情况下构建 mosquitto 1.4.2(基于此处找到的说明)时,出现以下错误。
有问题的行是BROKER_LIBS:=$(BROKER_LIBS) -lwebsockets
,在config.mk
。我已经尝试了以下两种方法,并为其提供了.so
文件的完整路径:
我正在研究英特尔爱迪生。
iot - 英特尔爱迪生的定时器中断
我一直在尝试将英特尔爱迪生与脉冲传感器(http://pulsesensor.com/products/pulse-sensor-amped)一起使用。我已经看到了与 Arduino Uno 相同的例子。它使用 Arduino 的定时器功能,使用 Atmega328 和 16MHz 时钟。爱迪生的规格不同。那么我的英特尔爱迪生会有什么变化。请指导。
处理中断部分的 Arduino Uno 代码是:
这会每 2ms 产生一次中断。
intel-edison - 英特尔 Edison 代码和电源问题
我想通过插孔的电源运行我的爱迪生,但每次我移除 USB 时,它都会停止执行那里的代码。它也不会通过代码重新启动。任何想法为什么会发生这种情况?该代码不依赖于与计算机的连接。
android - Step Counting Algorithm
I am Currently working on pedometer Application for intel device with LSM9DS0 sensor. My requirement is to develop a pedometer with the application code intel published in the Native Application Guide
This code is available in the section 6.1.4 of below shared pdf
http://download.intel.com/support/edison/sb/edison_nag_331192003.pdf
As a matter of fact I found some similar code but android version
Complete android source code available in Github
https://github.com/bagilevi/android-pedometer
My problem is that I am not able to make perfect design document using these codes. I need clarifications on
How does Scale values are calculated? its look like a random constant from nowhere is used here
/li>How does these mLimit value calculated?
if (diff > mLimit)
Intel code saying
v = vSum / 2300;
ButAndroid code saying
v = vSum / 3;
The Calculation of vector Sum is similar in both the codes. Which equation actually followed here?
Please some one help me to get these things straight
c++ - GP635T GPS传感器数据输出
我的 GP635T GPS 传感器连接到我的 Intel Edison 时遇到了一个相当奇怪的问题。我使用 C++ 和 Eclipse 对其进行编程。
如果我尝试接收这样的数据
$GPGGA
我得到一个很长的输出,其中包含从到的所有类型的受支持消息$GPTXT
(请参阅数据表 --> http://www.cypax.dk/pdf/GP-635T-121130.pdf)。但我只想使用$GPGLL
-messages。所以我调整了代码以找到该消息开头和结尾的索引:
但是使用该代码,变量“消息”始终只包含一条随机类型的消息。我不知道为什么会发生这种情况,因为我没有在代码中的任何地方触摸变量“消息”。
此外,如果我删除/注释这些行,也会发生同样的效果message.find()
。我仍然只收到一条随机类型的消息。只有第一个代码块显示长消息。
c++ - libcurl http post 发送数据到服务器
上面的代码运行成功但是当我通过这个
当我在上面运行它时,它给了我错误我怎样才能传递这个脉冲数据和临时数据?
yocto - How do I clone a custom Intel Edison?
I have built a custom Intel Edison that has lots of modifications. I am trying to figure out how to copy the Edison and install it on many other Edison modules. I tried this "backup and restore" tutorial http://www.instructables.com/id/BackupRestore-Intel-Edison/ and it did copy the files but they did not run properly.
I've searched extensively but cannot find the answer. Can anyone help?
c - 如何使用 C 中的“popen”在同一个文件中写入和读取
我正在使用英特尔爱迪生和 SensorTag。为了通过 BLE 获取温度数据,有一堆命令。当我将 popen 定义为:
代码在大多数情况下都能正常工作。(由于我无法控制响应,我假设由于延迟问题而导致其他时间崩溃。)
但是,当我想控制命令/控制台响应时(例如在建立蓝牙连接时进入下一行,如果不尝试再次连接等),我无法读取响应。我的“数据”变量没有改变。
我还尝试了其他“popen”模式,但它们会给出运行时错误。
这是我正在使用的代码: