6
            
            votes
        
        
            
            
        What can I do with an fzz file?
                    Download and install the open-source, Fritzing CAD software for electronics hobbyist and open the .fzz file with that.
Versions are available for Linux, Mac, and Windows.
Installation instructions ...
                
            
       
        
            
                5
            
            votes
        
            
                
                Accepted
            
        
            
        Does the Arduino Yun have to be powered exactly at 5V?
                    It is fine. That is only 2% too high. The microcontroller is the ATmega32U4 and it can have 5.5V. The wifi module runs at 3.3V, and it has a voltage regulator. Some voltage is also lost in the cable. ...
                
            
       
        
            
                3
            
            votes
        
            
                
                Accepted
            
        
        easy_install pip on Arduino Yun fails
                    Found this Arduino Forum Thread helpful.
# wget \
https://pypi.python.org/packages/source/p/pip/pip-6.0.8.tar.gz#md5=2332e6f97e75ded3bddde0ced01dbda3\
  --no-check-certificate
# easy_install pip-6.0....
                
            
       
        
            
                3
            
            votes
        
            
                
                Accepted
            
        
        Arduino - Push Button State Problem
                    you will need to implement a edge sensor. Add a previousTouchsensorState to the globals and replace the if where you check the sensor state with:
if(previousTouchsensorState == LOW && ...
                
            
       
        
            
                2
            
            votes
        
        
            
        How to make an arduino wifi repeater?
                    Get a very cheap module called ESP8266, particularly the ESP-01, then flash a program called esp_wifi_repeater (which uses the arduino IDE)
https://github.com/martin-ger/esp_wifi_repeater
I have ...
                
            
       
        
            
                2
            
            votes
        
            
                
                Accepted
            
        
            
        Stop Arduino Timer after some seconds
                    You set a timestamp = millis() when the button is pushed and then you disable the buzzer only when millis() - timestamp > timeout 
if (touchsensorState == HIGH) {
    // buzzer will emit sound:
   ...
                
            
       
        
            
                2
            
            votes
        
            
                
                Accepted
            
        
        Arduino Yun not getting response from Azure API
                    Found the problem, even though I set azure to accept http requests, it was still redirecting to https which the arduino couldn't handle. I've written a python script to offload the requests to the ...
                
            
       
        
            
                2
            
            votes
        
            
                
                Accepted
            
        
            
            
        Arduino Yun Disk Expander low memory but it looks like my memory is fine
                    I don't have a YUN or a lot of experience with OpenWRT, so I'm not sure I'm going to be of much help but, I'm guessing the error you're seeing is from this line of the sketch.
Excerpting that here:
...
                
            
       
        
            
                1
            
            vote
        
        
            
        Arduino Yún causing power suge warning
                    Use a USB tester to test the current consumption, it should be < 500ma
I recommend using a USB that has power of its own, eg. monitor USB
                
            
       
        
            
                1
            
            vote
        
        
        Arduino Yun receives UDP packets but prints them with gibberish
                    You send only 5 or 6 characters "test\r\n". the rest is random memory content.
The return value of parsePacket should be the count of received characters, but the implementation in BridgeUdp ...
                
            
       
        
            
                1
            
            vote
        
        
            
        Arduino Yun receives UDP packets but prints them with gibberish
                    You are receiving a small packet of about 5 or 6 characters (depending on your line ending). That is being received into a 16 byte buffer which has contents unknown.  So the first 5 or 6 bytes of the ...
                
            
       
        
            
                1
            
            vote
        
            
                
                Accepted
            
        
            
        Trying to do hello world app for Nokia 5110 LCD with arduino yun and johnny five
                    Arduino Yun is a ATMega32U4-based board, like other ATMega32U4-based Arduino boards, such as Arduino Leonardo, Micro, the SPI is only available on the ICSP header:
MOSI - Yun has it on ICSP Pin 4
...
                
            
       
        
            
                1
            
            vote
        
        
            
        Sending file from PC to Arduino
                    You can send a file, byte after byte, using Serial.
On the Arduino side, you parse serial communication and put bytes inside an array. At the end, you reconstruct the file.
                
            
       
        
            
                1
            
            vote
        
        
            
            
        Arduino YUN Rev. 2 power supply
                    For version 1 VIN is connected, through a Schottky diode, to the 5V rail.  That means you can only provide, at absolute most, 5V plus a little bit for the diode drop into VIN.  The 5V pin can only ...
                
            
       
        
            
                1
            
            vote
        
            
                
                Accepted
            
        
            
            
        What's the maximum number of keys in Yun Bridge?
                    The data is just stored in an array within the Python daemon. The ATMega32U4 just sends commands to set / get the values, so there is no limit imposed by the ATMega side of things.
The only limit is ...
                
            
       
        
            
                1
            
            vote
        
            
                
                Accepted
            
        
            
        BridgeServer REST API with more string values
                    You misunderstand the networking Client class concept. It is a stream like the Serial object. Bytes are stored in the Client object's buffer only until you read them.
                
            
       
        
            
                1
            
            vote
        
        
            
            
        Does the Arduino Yun have to be powered exactly at 5V?
                    I would avoid directly powering any micro without voltage regulation. Things like zener diodes and dedicated regulators adds complexity. But you can pretty much power it off any positive rail at or ...
                
            
       
        
            
                1
            
            vote
        
        
            
        Will I be able send a HTTP request using the Arduino Yún?
                    Looking at your other two questions as well I see you have had limited success with a ESP8266.  I have never used a Yun, but I haven't seen much good stuff about them on here.  If you want a Linux ...
                
            
       
        
            
                1
            
            vote
        
            
                
                Accepted
            
        
        Arduino Uno and Arduino Yun software. Which version of the IDE works with both best?
                    The Yun startup was written when the normal IDE didn't support the yun, so you had to use a release candidate of a future version.
Those days are long gone.
Always use the latest version of the IDE.
                
            
       
        
            
                1
            
            vote
        
        
            
            
        Arduino Yun connection problems
                    You have to find IP address of your Yùn on your local network. 
What I do in this case: 
- look on the Home router if you can see your Yùn and it's ip, or,
- there is a sketch in Arduino Ide / exemple ...
                
            
       
        
            
                1
            
            vote
        
            
                
                Accepted
            
        
            
        Possibility to program the ATmega32u4 on the Arduino Yun using a configuration file
                    You can't. You'll have to change your macro into a variable and change that variable when suitable data is received through the serial port.
You may also have to trigger a reconfiguration of whatever ...
                
            
       
        
            
                1
            
            vote
        
        
        Adafruit Motor Shield and Bridge Library for Yun Shield
                    Looking at Bridge.begin() description here
 you can see this is blocking function. 
  begin() is a blocking function. Once you call Bridge.begin(), nothing else will happen in your sketch until it has ...
                
            
       
        
            
                1
            
            vote
        
        
            
        Linux SSH command for Arduino Console
                    The console port is only listening on 127.0.0.1 (for security), so only the Yun itself can connect to the console.
You can weaken security and open the port up to the entire local network by editing ...
                
            
       
        
            
                1
            
            vote
        
        
        Cloud function getting stopped Parse.com in loop when calling from Arduino-yun
                    Give this a shot, I really hate String, maybe that 8-times thing has to do with memory issues caused by it.
void loop() {
  char functionToCall[8] = "meeting";
  Serial.println("Start loop");
  ...
                
            
       
        
            
                1
            
            vote
        
        
        Which thermometer for home brewing
                    I am not a brewmaster but from what I understand the temperature will change slowly. Your problem is not to contaminate the beer, you can use a stainless possibly even a plastic tube that is sealed on ...
                
            
       
        
            
                1
            
            vote
        
        
        Converting Arduino Uno with Ethernet Shield sketch for Arduino Yún
                    (Updating answer from comments.)
The OP answered their own question, they missed the code to connect to the web service
if (client.connect(server, 80))
                
            Community wiki
            
        
        
        
    
            
                1
            
            vote
        
        
        How can I get a unique ID for all my Arduino boards?
                    There is tiny library for reading and writing your custom hardware ID to EEPROM. You can use it to avoid pushing wrong sketch to your Arduino or to identify device for other purposes. 
https://github....
                
            
       
        
            
                1
            
            vote
        
        
        How to get HTTPS on Arduino?
                    Using of WiFi shield can be a solution - it supports HTTPS. 
https://www.arduino.cc/en/Reference/WiFi101
                
            
       
        Only top scored, non community-wiki answers of a minimum length are eligible
Related Tags
arduino-yun × 192wifi × 28
arduino-uno × 20
linux × 13
serial × 12
web-server × 12
shields × 11
ethernet × 9
python × 9
programming × 8
sd-card × 7
sensors × 6
sketch × 6
arduino-mega × 5
arduino-ide × 5
web × 5
esp8266 × 4
string × 4
voltage-level × 4
temperature-sensor × 4
remote-control × 4
power × 3
arduino-leonardo × 3
rfid × 3
wireless × 3
 
         
         
         
         
        