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

Execute Go program on Arduino Yún

I would like to run a Go program on the Arduino Yún platform. It features an embedded Linux running on a 32 bit MIPS processor (Atheros AR9331). Contents of test.go: package main import "fmt" func main() { fmt.Println("Hello!") } I use the…
2
votes
1 answer

Arduino yun Stops working after a few hours

I am trying to use the arduino yun to output the number of parts a machine has produced to a google spreadsheet. With the setup I have, I am able to output data to the spreadsheet temporarily. However, after some time, the yun stops working. The red…
MacMixer13
  • 73
  • 1
  • 8
2
votes
1 answer

Getting private bool property from method in Arduino library

I'm creating my own library in arduino to controlling a pump. The library is very simple: Pump.h #ifndef Pump_h #define Pump_h #include "Arduino.h" class Pump { public: Pump(int pin); void Open(void); void Close(void); boolean…
CrazYoshi
  • 23
  • 3
2
votes
1 answer

Arduino Yun Parse Setup not working in Arduino IDE

I am using an Arduino Uno with the Dragino Yun Shield. Everything is working perfectly fine until I go here at step 5: https://parse.com/apps/quickstart#embedded/arduinoyun WARNING: Category '' in library Parse Arduino SDK is not valid. Setting to…
Toni_Entranced
  • 969
  • 2
  • 12
  • 29
2
votes
2 answers

Installing Node on Arduino Yun

I have an 8G MicroSD card and I want to install Node for Arduino Yun using opkg but I receive the following message: root@Arduino:~# opkg update Downloading http://downloads.arduino.cc/openwrtyun/1/packages/Packages.gz. Updated list of available…
Mona Jalal
  • 34,860
  • 64
  • 239
  • 408
2
votes
0 answers

How to toggle mjpg_streamer on and off

I have an arduino yun setup with a Logitech C270 web cam. I ssh into it and run the following command: mjpg_streamer -i "input_uvc.so -d /dev/video0 -r 640x480 -f 25" -o "output_http.so -p 8080 -w /www/webcam" & It works as intended. I made a…
odran037
  • 271
  • 5
  • 17
2
votes
0 answers

Arduino YUN - complex JSON response

I am using Bridge library on my Arduino YUN to create REST web service. Is there any way to create complex JSON response?
user2176690
2
votes
1 answer

Parse.com Arduino Yun SDK Quickstart tutorial not working

I have followed the quickstart tutorial step by step on this link https://www.parse.com/apps/quickstart#embedded/arduinoyun . Here is my output on the Aruino Yun's serial monitor: Parse Starter Project Response for saving a TestObject: Test object…
codeToDeath
  • 137
  • 1
  • 8
2
votes
2 answers

How to get a json response from yaler

I create an account with yaler, to comunicate with my arduino yun. It works fine, and i'm able to switch on and off my leds. Then i created a web page, with a button that calls an ajax function with GET method to yaler (yaler web server accept REST…
pasluc74669
  • 1,680
  • 2
  • 25
  • 53
2
votes
1 answer

Mount Sd card on Arduino YUN

I have brought a Arduino YUN and i want to mount the Sd on it as it is having only 16mb memory. I have used mount command and it is showing my sd card in the list after that i have no idea how to proceed please help me with an explanation.
Bad Coder
  • 866
  • 1
  • 12
  • 27
2
votes
1 answer

Writing and saving python script to arduino yun RAM

I'm trying to save a python script to the onboard linino RAM, but I can't quite get it to work. Am I writing the python script file correctly? Can anyone view my code and tell me where I'm erring? I basically modified code from an example on the…
mjmostachetti
  • 378
  • 1
  • 4
  • 14
1
vote
1 answer

arduino yun and rfid shield compatibility

I bought an arduino yun together with this board https://wiki.keyestudio.com/Ks0259_keyestudio_PN532_NFC/RFID_Controller_Shield reading some posts it seems that they are not compatible because of pinout (with uno no problem!), I have just small…
andymo
  • 77
  • 11
1
vote
0 answers

Arduino - how to make the HTTPS work?

Microprocessor Arduino YUN is working when i use HTTP, but not working HTTPS client.get("https://me.example.com/ajax/robot?command=1"); How to make HTTPS work? #include #include String result = String(""); void setup() { …
user285594
1
vote
0 answers

Arduino Yun - UART Through USB Host to Nexys 4 DDR FPGA Board

I'm working on a project that requires reading and writing data to an SD card, and I want to make the algorithms that evaluate incoming data in hardware. I found out that the only way to read/write to an SD card through my FPGA board would be to…
1
vote
1 answer

Calling python script from Arduino Yun using Process.h

I'm a newbie in Arduino and trying to check my python script in Arduino is running or not. I placed the python script(sample.py) in /mnt/sda1/arduino/www/ which is in SD card. From the scratch file, I wrote it like below, Process p; void setup() { …
paulc1111
  • 631
  • 3
  • 14
  • 32
1
2 3 4 5 6 7 8