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

Arduino Yun - Process called from .ino script crashes

I have a python script running in a loop. Whenever it passes values 2, 3, or 4 through the bridge (to trigger relays from the .ino script), the python script crashes. Basically, I see my relayValue printing in the serial monitor, and then I see…
ad01
  • 43
  • 1
  • 10
0
votes
1 answer

Pass a variable on a call in Python to bisect arduino action

Total noob with Python writing, so pease be kind. I have been trying for hours to solve this and so long I am not able. The only work I have done in Python was much simpler and didn't involve libraries. I'm using this Python code to implement an…
Graucho Marx
  • 61
  • 1
  • 8
0
votes
0 answers

Arduino C++ programm locks up after sending "on" but not "off"

I have a piece of code that is sending an MQTT message. The message is the same with the only change being changing action between 'on' and 'off'. I can end off as many times as I like, but when I send 'on' it locks (even if it is the first…
user2997982
  • 526
  • 5
  • 8
0
votes
2 answers

Dragion yun shield ip address

I just got an arduino yun shield by dragino. I plugged into my computer usb with an Arduino uno following the instructions of the wiki and powering it from 5v > vin. After a while the wifi network popped up, so I entered it. Went to…
Manu Masson
  • 1,667
  • 3
  • 18
  • 37
0
votes
1 answer

ImportError: No module named temboo.core.session

I'm using a python file to run on arduino yun. but its giving me this error: Traceback (most recent call last): File "/mnt/sda1/upload_picture.py", line 7, in module from temboo.core.session import TembooSession ImportError: No module named…
0
votes
1 answer

Arduino Yun does not update object in Parse

I'm using a Dragino Yun Shield with my Arduino Uno and a reed sensor. The response to the code below indicates no errors, but yet the data on Parse.com does not show that it is updated. What am I doing wrong? The Bridge wifi test says it's connected…
Toni_Entranced
  • 969
  • 2
  • 12
  • 29
0
votes
1 answer

ImportError: cannot import name HTTPSHandler using OpenWrt

I'm trying to install AWS-IoT-Arduino-Yún-SDK following the instructions and got this erros: pip install paho-mqtt Traceback (most recent call last): File "/usr/bin/pip", line 9, in load_entry_point('pip==7.1.2', 'console_scripts',…
lsilvs
  • 104
  • 1
  • 3
0
votes
2 answers

Arduino yun wifi network not appearing in my available network on windows 8

I'm connecting my Arduino Yún to my laptop via USB cable and as I read in Arduino documentation: When you first power on the Yún, it will create a WiFi network called ArduinoYun-XXXXXXXXXXXX. Connect your computer to this network. But in my case…
WhiteOne
  • 887
  • 1
  • 10
  • 20
0
votes
1 answer

Controlling Arduino with local webpage/node.js

So first off please bear with me, this is my first time working with any of this. I was able to write a simple python code that could send info to the arduino and control its servo: def main(inp): import serial ser =…
megan
  • 31
  • 2
0
votes
0 answers

Strange behaviour with Arduino Yún Bridge

Recently, I've been writing an Arduino(Yún) sketch to get RGB values(0-255) from the bridge. I have Bridge.begin() in the setup and the following in the loop: Bridge.get("r", r, 4); Bridge.get("g", g, 4); Bridge.get("b", b, 4); Which should get the…
Tugzrida
  • 491
  • 2
  • 6
  • 17
0
votes
1 answer

Intel Gallileo or Arduino Yun?

What are the main differences between the Arduino Yun and Gallileo Intel? Which one do you recommend me to buy? I want to use it for IoT projects, I want to be able to connect it to the SAP and Intel Platform as a service. EDIT (from OP…
0
votes
0 answers

How do I get my Arduino Yún to receive push notifications with Parse.com

I followed the Quick Start Guide to set up receiving Parse Push notifications on my Arduino Yún. I'm using the Yún embedded SDK 1.0.3-1. It only works once, on reboot or whenever .setup() is called. Afterwards, receiving pushes does not work,…
Timi Ajiboye
  • 113
  • 2
  • 8
0
votes
0 answers

Measuring distance with Wi-fi and Bluetooth

The goal of my project is to discover devices with Wi-Fi or Bluetooth turned on (not connedcted anywhere) and measure the distance between those devices and my search devices. The search devices will be some Arduino-like devices which would have…
Narzhan
  • 1
  • 1
  • 2
0
votes
1 answer

Arduino yun to parse.com

I am trying to post an object to my parse.com app from my arduino yun and it needs to post a new object every second. So far I have been able to post every 10 seconds but I cannot seem to get the arduino to post any faster than that. I tried looking…
0
votes
1 answer

Arduino Yun Data Logging to Google Docs (Spreadsheet)

I am trying to send data from Analog Sensor 1 on the arduino yun to a spreadsheet in google docs via pushingbox.com. So I have got the ling between pushingbox and the google docs working but its the link between the Yun and the pushingbox that I am…