Questions tagged [intel-edison]

Intel Edison is an electronics prototyping platform equipped with a micro controller (Intel® Quark™) and a Dual Core CPU (Intel® Atom™) plus BLE and WiFi aimed for product prototyping of (IoT) connected type of devices

The board has some impressive features:

  • Uses a 22nm Intel® SoC that includes a dual core, dual threaded Intel® Atom™ CPU at 500MHz and a 32-bit Intel® Quark™ microcontroller at 100 MHz. It supports 40 GPIOs and includes 1GB LPDDR3, 4 GB EMMC, and dual-band WiFi and BTLE on a module slighter larger than a postage stamp.
  • The Intel Edison module will initially support development with Arduino* and C/C++, followed by Node.JS, Python, RTOS, and Visual Programming support in the near future.
  • The Intel Edison module includes a device-to-device and device-to-cloud connectivity framework to enable cross-device communication and a cloud-based, multi-tenant, time-series analytics service.

Official website

Currently there is a modified version of the Arduino IDE to support development for the Quark microcontroller.

Most basic Arduino function work the same, but it's worth keeping in mind AVR specifics (such as interrupts and port manipulation) need to be ported for Intel Quark.

In addition, the Arduino Intel provides libmraa for lower level manipulation GPIO pins and interrupts. Also, the IoTKit makes it easier to publish sensor data online via a node.js service.


Useful links

Related tags

222 questions
0
votes
3 answers

How to connect multiple I2C LCDs using Intel Edison?

I'm using the Intel Edison for a project, but the code to introduce new lcds in arduino is as follows: rgb_lcd lcd; I am not capable of picking which grove shield plug I'd like when using multiple lcds. I'm wondering if there is another way to…
r_l559
  • 1
0
votes
1 answer

Why I keep getting ClassNotFoundException: com.mysql.jdbc.Driver Error on Eclipse IoT

Im getting started with Eclipse IoT and when trying to create the SQL connector I get the errors bellow. I have added the classpath in windows and the corresponding .jar library is added to the project as advised in…
JuanV
  • 13
  • 4
0
votes
1 answer

How do I communicate between Arduino board and Intel Edison Arduino board using XBee S2?

I have an Arduino Uno board and an XBee S2 device on it. I can identify my Arduino Uno board is transmitting data from XBee S2 by seeing the tx LED, but I am not clear how to receive data on the Intel Edison Arduino setup board (XBee S2 is also…
Harish
  • 341
  • 1
  • 13
0
votes
1 answer

run a command that needs input without hanging, but still allow input

I'm making a basic music player in C++ on an embedded Linux platform (Intel Edison). It works by sending commands to the shell to play the music using mpg123. Playing the music is working fine, but now I need to add media controls. I'm using the…
Keith M
  • 1,199
  • 2
  • 18
  • 38
0
votes
0 answers

Simulate Keyboard Strokes C++ On Mac

I am working with the Intel Edison board and mainly trying to program in C++ to simulate keyboard strokes on a computer. Mainly programming it on my Macbook Pro. Most solutions online either use different language, or uses some Visual studio…
ajl123
  • 1,172
  • 5
  • 17
  • 40
0
votes
1 answer

Java SSL connection refused

I am having problem connection ssl socket code where java client is simply sending a message to the python server listening. When I run the code as localhost for both server and client, it works just fine. If I use the python server on my embedded…
Aboogie
  • 450
  • 2
  • 9
  • 27
0
votes
1 answer

Edi-Cam Streaming Video Using Intel Edison Help Needed

I am using a USB Webcam attached to an Intel Edison Arduino board running Edi-Cam application to monitor to do security monitoring. I can connect to it from inside of my local network and view the video stream. I want to be able to view the webcam…
0
votes
3 answers

How to integrate Java and C into same project?

Is there a way to integrate two programming languages into the same project? I am working over an Intel Edison platform and already done part of SQL and connectivity management in C, now I found some nice libraries in Java for the second part of the…
JuanV
  • 13
  • 4
0
votes
1 answer

How to Access a C global variable from Python script

I am new to the python concepts. I have 3 health monitoring Applications Running in intel edison Device. I want to transmit these application result values(int value) to an android App. So far am able to make a connection over Bluetooth(using SPP…
runner
  • 591
  • 2
  • 7
  • 20
0
votes
1 answer

Language compatibility with Arduino Edison / Galileo

Since the Yocto Linux distribution can run on both machines, I'm assuming it would have no trouble compiling and using any language, which ordinary developers with a Linux system would use. Am I right in making this assumption? It says, on the Intel…
Greg Peckory
  • 7,700
  • 21
  • 67
  • 114
0
votes
1 answer

/libstdc++.so.6: version install not found

I am trying to use the praat tool on my Intel Edison, but the only library that is giving me is a problem is the libstdc++.so.6. The exact problem is that the tool requires a much older version of the library, specifically /usr/lib/libstdc++.so.6:…
Aboogie
  • 450
  • 2
  • 9
  • 27
0
votes
1 answer

Grove Seeed Studio sensors not working properly with Intel Edison

I've been trying to run simple scripts on my Intel Edison to try the different Grove Seeed Studio sensors and cannot manage to make them work. My board is configured correctly, its firmware is up to date, and all cables have been connected…
jgozal
  • 1,480
  • 6
  • 22
  • 43
0
votes
1 answer

POST raw to server Processing

I have an Intel Edison running a Node.JS server that is printing everything I post to it into the console. I can successfully post to it using Postman and see the sent raw data in the console. Now I'm using Processing to POST to it, which will fire…
Keith M
  • 1,199
  • 2
  • 18
  • 38
0
votes
1 answer

Run a simple C sample on Intel Edison

I am trying to connect a intel Edison to IOT hub as to documentation on Azure at Git https://github.com/Azure/azure-iot-sdks/blob/26e81a7a3358815bfee9553678f546ffe6f3d3ce/c/doc/run_sample_on_intel_edison.md it says to Navigate to:…
DtrollQ
  • 9
  • 2
0
votes
2 answers

Build the Azure IoT sdk on edison

I am trying to run a C sample on Intel Edison like in : https://github.com/neeraj-khanna/azure-iot-sdks/blob/master/c/doc/run_sample_on_intel_edison.md I am trying to Build the Azure IoT sdk , I Set necessary environment variables export…
DtrollQ
  • 9
  • 2