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
1 answer

is it possible to send a bin file over spi interface

I have an FPGA connected to a mini computer (Edison) over SPI. Is it possible to send a bin file over spi to program the fpga? Does that even make sense? How would one split up a bin file?
riverrock
  • 97
  • 2
  • 8
0
votes
1 answer

Intel Edison bluetooth is not able to connect to HC-05 bluetooth module

I have done pairing of Intel Edison with HC-05 but whenever I try to connect Edison with HC-05 I got this. [bluetooth]# connect xx:xx:xx:xx:xx:xx Attempting to connect to xx:xx:xx:xx:xx [CHG] Device xx:xx:xx:xx:xx Connected: Yes …
Shubham Rajput
  • 192
  • 3
  • 12
0
votes
1 answer

When trying to connect Intel Edison BLE to CSR bluetooth dongle on pi I am getting disconnected immediately

I have done pairing of Intel Edison and pi bluetooth dongle successfully but whenever I try to connect pi from Edison I always get. Connected Yes Connected No I am using bluetoothctl to connect
Shubham Rajput
  • 192
  • 3
  • 12
0
votes
0 answers

RecordFuture future.get() did not return (seldom)

I run a KaaClient on intel edison with temperature sensor, and updating the temperature onto KaaServer, but sometimes when I start or resume the client, it will hang on RecordInfo recordInfo = future.get(); After investigating log, I was wondering…
ppnfk
  • 74
  • 1
  • 5
0
votes
0 answers

IoT Analytics Device Registration

I'm trying to register my Edison, then I typed the following command with activation code. But, IoT Analytics said Device already exists even though I haven't registered any device. Does anyone have an idea to fix this? Thanks root@itpsandbox:~#…
0
votes
1 answer

How can I send data between Intel Edison and a mobile device using Ad Hoc or SoftAP?

I am working on a project where I need to transfer data between an Intel Edison and a mobile device (hoping for cross platform compatability) without using a router. I have considered Wi-Fi Direct, but this is not available on iOS and only available…
Myatt95
  • 33
  • 6
0
votes
1 answer

Lost, trying to connect Intel Edison SPI to ADC using the intel XDC and node

I am using the intel XDK for the first time and I am trying to get a reading from this SPI ADC ADS7951SRGER 12 Bit Analog to Digital Converter 8 Input 1 SAR 24-VQFN (4x4) http://www.ti.com/lit/ds/symlink/ads7950.pdf its connected like so SPI_2_RXD…
0
votes
1 answer

How can I exchange data between android phones and Intel Edison constantly?

I need to connect several android devices to an Intel Edison via WiFi or blueetooth (WiFi prefered), i'm using the XDK IDE (javascript) for my project, but i can't find a proper example to do this, the devices will act as sensors and will send data…
0
votes
1 answer

GET request using Azure app services and Intel Edison

I wanted to read data from an azure app service's easy tables using REST API to an Intel Edison. Before I did the same using Azure Mobile Services and my code was this. PS: I'm programming the device by the Arduino IDE. void send_request() { …
0
votes
0 answers

Edison's screen is stuck - no input from keyboard is recieved

I've flashed an image with Preempt-RT on my edison, and for few days everything worked fine. Then, I connected rx to tx and continued working on my edison when suddenly edison got stuck. Since then, for some reason edison's shell won't accept any…
0
votes
0 answers

Intel Edison: Can't establish Socket Connection with my Laptop

I'm new to Intel Edison programing. I set up my device and connected it to my local network via wi-fi. I use the following code to create a ServerSocket: public class SensorServer { ServerSocket serverSocket; Socket client; int port; …
D. Müller
  • 3,336
  • 4
  • 36
  • 84
0
votes
2 answers

Cross compiling portAudio for Intel Edison

I am using the cross compile environemt from the Intel Site and have successfully compiled several other libraries using it (libsndfile, alsa, fftw) but when I try to compile portaudio it refuses to link to the proper directories. Here is the error…
CrustyAuklet
  • 357
  • 3
  • 16
0
votes
1 answer

how to read temperature/humidity sensor attached to an Intel Edison?

I'm trying to create an DHT11-based temperature/humidity sensor with Intel Edison and mraa via Python: The documentation for Python's mraa package was a bit thin on example code. There's a lookup table to associate physical pins to mraa pin…
Alex Woolford
  • 4,433
  • 11
  • 47
  • 80
0
votes
0 answers

Obtaining a fast ADC sample rate in embedded linux with an external ADC

I've been given the task of getting ADC samples onto an embedded linux computer at the highest rate I can (up to about 300kSPS). I am playing with several different platforms (odroid, edison) but easrly on I realized the limitations of using the…
CrustyAuklet
  • 357
  • 3
  • 16
0
votes
0 answers

How to change directory/open a Python program?

I'm coding Python for my edison board using putty. I have a Python file which I wish to run on my edison board (simple blink LED). The .py file is located in a folder called "pythonpractice" in my documents on my C drive. I've been trying to change…
Cathal Brady
  • 117
  • 1
  • 3
  • 10