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
0 answers

Connecting Arduino Yún with Processing - JSCH

I recently bought Arduino Yún, and I´m trying to use the data of analog pins with Processing and broadcaste with OSC to other applications. I´m using this code from Proccesing forum (I didn´t receive answers) but I don´t know how to use this code…
1
vote
0 answers

Python Feedparser - KeyError: 'fullcount'

Here is what im asking. I am using mac osx 10.9, python 2.7.3, feedparser 5.1.3 on arduino yun, i tried to use the following python script to check my gmail and it keeps returning error codes as below. Here is the full code: root@ArduinoYun:~# vi…
loktherhal
  • 43
  • 8
1
vote
2 answers

Arduino Yun sketch not only working on usb connection

I have the following problem: Using Arduino 1.5.7 and Yun with OpenWrt 1.2 I can upload my sketch via USB and see my sketch working via serial monitor. However when I disconnect the usb connection then i can not connect the serial monitor anymore…
iwan
  • 21
  • 1
  • 3
1
vote
0 answers

PyUSB: How to structure a call to interruptWrite()

Note: This is Python 2.7 and PyUSB 0.4.3 I am trying to send serial data from an Arduino Yun to a USB dongle plugged into the Yun's USB host port using a Python script. The data is just a sequence of characters (currently just one to simplify…
1
vote
4 answers

The simplest bridge example won't work - Arduino Yun

I tried to modify the Temperature Web Panel example (found in arduino-1.5.6-rw/libraries/Bridge/examples/TemperatureWebPanel) for a light sensor. Unfortunately it seems even the simplest receive and transmit result over wifi doesn't work! I even…
NoBugs
  • 9,310
  • 13
  • 80
  • 146
0
votes
1 answer

Arduino Yun not getting response from Azure API

I'm trying to get my Arduino Yun to talk to an API that I'm hosting on Azure. I would like to do more complex things in the future, but at the moment I'm just trying to make a GET request over wifi with a single integer as a parameter. I'm basically…
Aevo 55
  • 3
  • 1
0
votes
1 answer

how to solve ip issues among nodes in batman-adv?

hello i am trying to use batman adv on two arduino yun V2 devices where i did everything as said in: https://openwrt.org/docs/guide-user/network/wifi/mesh/batman http://www.radiusdesk.com/old_wiki/technical_discussions/batman_basic after i configure…
0
votes
1 answer

Calling curl command using byte buffer in Arduino

I'm currently working on Arduino devices and tying to use "process library" to call my REST API. Here's my code snippet. void api_send_cell(uint8_t* data) { Process p; p.begin("curl"); p.addParameter("-X Post"); …
goofcode
  • 23
  • 1
  • 6
0
votes
1 answer

Sending data from android to arduino rx-tx USB

I have an arduino that controls a car, I need a compass to control the car automatically, unfortunately we could net get a compass (not in stock, no online shopping availble in my country) So the idea is this: I will get a compass running on android…
bakz
  • 79
  • 15
0
votes
0 answers

Sending MQTT messages to AWS IoT Mqtt broker using Seeduino

I've been trying to connect the Seeduino microcontroller to the AWS IoT platform to send MQTT messages. I've started with basic PubSub example provided by Amazon SDK kit provided here:…
0
votes
1 answer

Connect Android Studio to Arduino YUN

I am making a smart urban farm that has 3 sensors: moisture, water, and temperature. I am trying to send the values(digital/analog) via wifi-shield to the app itself. I am having a hard time finding a similar code that does this using wifi. What…
user3797544
  • 111
  • 1
  • 6
0
votes
0 answers

Arduino yun pip install mysql-python failed

I use pip install mysql-python it show me Traceback (most recent call last): File "", line 20, in File "/tmp/pip-build-r4ybCJ/mysql-python/setup.py", line 17, in metadata, options = get_config() File…
panda001
  • 109
  • 1
  • 3
  • 12
0
votes
1 answer

How can I create a text file on an SD card mounted on an Arduino Yun?

Like the title says, I am trying to create a text file from my Arduino sketch. My Arduino is connected to my computer via an Ethernet cable but the SD card is mounted on the Arduino, so I am assuming the connection to the computer (USB or Ethernet)…
BourbonCreams
  • 353
  • 4
  • 21
0
votes
0 answers

Wireless Serial Communication

I have created this Arduino sketch that communicates with my pc through the Console library and using the serial monitor over my network. Essentially, when I enter the digit 1, my Arduino stepper motor moves 30 steps etc. However, it is inconvenient…
Harry Stuart
  • 1,781
  • 2
  • 24
  • 39
0
votes
1 answer

Using postman to Send Post several times a day

I'm working on a Arduino personal project. With thingspeak + postman i'm being able to manually send Tweets. I want postman to send tweets automatically when ever my API field updates. Can you help me please?