Questions tagged [arduino-yun]

Arduino Yun is an Arduino-based device with a small OpenWRT Linux operating system (including SSH with shell and Python scripting capability) in addition to Arduino programmability.

Arduino Yun is an Arduino-based device with a small OpenWRT Linux operating system (including SSH with shell and Python scripting capability) in addition to Arduino programmability.

Homepage: http://arduino.cc/en/Main/ArduinoBoardYun?from=Products.ArduinoYUN

Getting started guide: http://arduino.cc/en/Guide/ArduinoYun

108 questions
1
vote
1 answer

Sending requests from Browser to Arduino has high latency

I have an Arduino Yun connected via the ESP8266 wifi with my laptop. Allowed cross origin data stream to get data from the Arduino using http requests. The problem with http requests is that it depends on the speed in which the ESP8266 chip can…
1
vote
1 answer

Receiving an SMS on an Arduino Yun with the Twilio service

I'm trying to create a project with an Arduino Yun that will allow it to receive text messages and process commands based on the text. I've followed the tutorial for sending SMS messages with the Yun…
1
vote
2 answers

Arduino YUN Rest Api HTTP Post

I use Arduino YUN for IoT project. I have a web service which requires headers and bodies, and I want to post data from arduino. Default HttpClient library supports put, get and delete methods but doesn't support post method. Any suggestion would…
user3817558
  • 91
  • 1
  • 12
1
vote
0 answers

How to download data from web server Mysql database to Arduino Yun using PHP?

I am using an Arduino Yun for my project. I need to download data from web host, 000webhost, mysql database to my Arduino Yun. How can I achieve that? I want to use php file, which should be working independently. How should I on the Arduino Yun…
Shiyu Lian
  • 155
  • 1
  • 3
  • 13
1
vote
1 answer

Arduino YUN - in new hardware linino is causing the HTTP impossible

How to make sure with Linino HTTP is working? following code does not work with new latest Arduino YUN. #include #include void setup() { //Bridge.begin(115200); delay(2000); } void loop() { HttpClient client; …
user285594
1
vote
0 answers

Error when install AWSCLI to Arduino Yun board

I try using pip install awscli on the arduino yun kernel but I get the following error messages: Traceback (most recent call last): File "/usr/lib/python2.7/site-packages/pip-8.0.2-py2.7.egg/pip/basecommand.py", line 209, in main status =…
Kevin Zhou
  • 85
  • 1
  • 6
1
vote
1 answer

writing shell ssh script for uploading compiled sketch on multiple arduino yun in network

I work with a couple of arduino yuns and want to write a script to upload sketches on multiple of them. Let's assume I have a compiled arduino program:sketch.hex. Now I'd like to upload this file via LAN. For a single device it works like…
maggu
  • 101
  • 9
1
vote
1 answer

How can I use Process class in Arduino Yun to read some stream-data?

Running shell command through Bridge in Arduino Yun through a Process let's say, proc, it gives result and we can read the result bytes using following piece of code. #include #include void setup() { Bridge.begin(); …
Fahad Siddiqui
  • 1,829
  • 1
  • 19
  • 41
1
vote
0 answers

Node.JS Child Process on the Arduino Yún is exiting when starting the parent-process via autostart

i´ve programmed a heating control with node.js, running on an arduino yun and it works just fine. A parent-process communicates with a server and forks a child-process, which is doing the control. I use fork(), the johnny-five lib and the…
1
vote
0 answers

How to run a python script from arduino yun sketch

i need to run a python script from an arduino yun sketch. the python file resides here: /mnt/sd/arduino/www/python/python.py ... and this is the arduino sketch: #include #include void setup() { Bridge.begin(); …
pasluc74669
  • 1,680
  • 2
  • 25
  • 53
1
vote
1 answer

How to build and upload code in Arduino if I'm using shared library?

I have a C code I want to embed with Arduino .ino, this code using some shared library (.so) present in current working directory. How can I build and upload this code to my Arduino Yun using Arduino IDE (or any other method). If I'm doing it the…
Fahad Siddiqui
  • 1,829
  • 1
  • 19
  • 41
1
vote
1 answer

Arduino Master - Slave setup

The master board is a Arduino Uno and the slave is a Arduino Yun. I have them both wired up using A4 & A5 of one board to attach to the A4 & A5 pin on the other. They are both powered separately but share the same ground like the diagram below. The…
Ste Prescott
  • 1,789
  • 2
  • 22
  • 43
1
vote
1 answer

Arduino Yun - how it's detected over the wifi

I wonder how the arduino IDE recognizes the ip address of the arduinoYun board over wifi/ethernet. So that I can implement it myself over mobile application. Thanks
Mostafa Khattab
  • 554
  • 6
  • 18
1
vote
4 answers

POST request with Arduino Yun

The following POST works via cURL from the terminal: curl --header 'Authorization: Bearer ' --header 'Content-Type: application/json' -X POST https://api.pushbullet.com/v2/pushes --data-binary '{"type": "note", "title": "Note…
vikzilla
  • 3,998
  • 6
  • 36
  • 57
1
vote
1 answer

not able to show ip address on port menu

i'm really going crazy for this problem!!! On the port menu, in the arduino ide, i need to select the ip address of my arduino yun, but i get only the serial port in the list (COM13). well, 1 - i've reinstalled Bonjour 2- opened the port 5353 UDP…
pasluc74669
  • 1,680
  • 2
  • 25
  • 53