Questions tagged [arduino-galileo]

A microcontroller board based on the Intel Quark SoC X1000 Application Processor, a 32-bit Intel Pentium-class system on a chip, designed to be hardware and software pin-compatible with shields designed for the Arduino Uno R3..

The Galileo board was based on the Intel Quark SoC X1000 Application Processor, a 32-bit Intel Pentium-class system on a chip.

Digital pins 0 to 13 (and the adjacent AREF and GND pins), Analog inputs 0 to 5, the power header, ICSP header, and the UART port pins (0 and 1), are all in the same locations as on the Arduino Uno R3. This is also known as the Arduino 1.0 pinout.

Galileo is designed to support shields that operate at either 3.3V or 5V. The core operating voltage of Galileo is 3.3V. However, a jumper on the board enables voltage translation to 5V at the I/O pins. This provides support for 5V Uno shields and is the default behavior. By switching the jumper position, the voltage translation can be disabled to provide 3.3V operation at the I/O pins.

30 questions
4
votes
3 answers

WARNING: Category '' in library *any library* is not valid. Setting to 'Uncategorized'

I'm using Ubuntu 14.04 with arduino Galileo and the newest arduino IDE from arduino.cc and every time I compile I got this warnings with any library in place of EEPROM, SD, Wire, Wifi and a lot of others. When I check the boards manager I got the…
gabriel119435
  • 169
  • 1
  • 1
  • 6
4
votes
1 answer

What are the main differences between the Arduino Tre and the Intel Galileo?

I'm looking to find a suitable board for a robot I'm developing (it'll involve computer vision, else I'd be using my Arduino Micro) and I've come across two possibilities: The Intel Galileo and the Arduino Tre. Now as I understand it, the Intel…
Thomas Russell
  • 143
  • 1
  • 5
3
votes
1 answer

NodeJS (Galileo-IO) + Arduino sensor library

I've done some basic apps with NodeJS firmata where I can connect to my Arduino Uno and do the basics like reading a pin or doing a servo write. I'd like to go further and play with some different sensors from vendors like Adafruit. Many such…
Gregir
  • 161
  • 1
  • 6
3
votes
1 answer

Failed to read DHT22 sensor using Intel Galileo Gen2 board

Why do I end up with the display Failed to read from DHT sensor! in the serial monitor in most cases when I run the code given below? When I reduce the delay to 1000ms the reading shows 0.00 for both temperature and humidity which, as well, is…
Jay M
  • 31
  • 1
3
votes
1 answer

Connecting a USB 3.0 Flash Drive

Is it possible to connect the nine pins from a USB 3.0 memory drive to the corresponding GPIO pins of the arduino (intel Galileo is what I am using, but it is very similar) and access the drive's memory through the implementation of the USB's…
justkash
  • 131
  • 1
  • 3
2
votes
0 answers

Problem in Uploading through Visual Studio

This is my simple program: int led = 13; void setup() { pinMode(led, OUTPUT); /* add setup code here */ } void loop() { digitalWrite(led, HIGH); delay(1000); digitalWrite(led, LOW); delay(1000); /* add main program code…
2
votes
1 answer

74HC595N in series error

I want have 2 74HC595N shift registers in series. I built this schematic When I send a value to the first register, it is sent to the second one. I have same value on both. I change them (master/slave) but the result is the same. I connected pin…
Val Valli
2
votes
3 answers

Using Intel Galileo Ethernet Port

Is it possible to use the galileo's ethernet port through arduino IDE? Or should I buy an arduino ethernet shield? Will I be able to use galileo as a server to which arduino board can send data to?
Felix
  • 21
  • 1
  • 2
2
votes
0 answers

Galileo - servo motor moves only in one direction and it doesn't turn back

I have an Intel Galileo (1st gen) and a servo motor (Tower Pro SG90). My problem: my servo moves only in one direction and it doesn't turn back. I want to perform a movement from 0° to 90° and then from 90° to 0° again. At the moment, I have just…
Kurtis92
  • 121
  • 3
2
votes
0 answers

Port is not available

I'm trying to connect my Arduino Galileo to Linux via Arduino IDE. Sometimes I'm able to do so, but other times I ge the following error 'Board at /dev/ttyACM0 is not available'. With dmesg I can see that the device is not recognized, a deeper look…
2
votes
2 answers

Controlling HDMI Switch via RS232/UART

Problem: I have an HDMI switch that is controllable via RS232 Scenario 1: Setup: PC connected to HDMI switch using USB -> serial adapter Test: Opening PuTTY on COM port and sending command "sw i01" from my PC Results: HDMI switch input changes…
john
  • 21
  • 1
  • 4
2
votes
1 answer

Client.connect galileo gen2 not working

I'm having a problem with the intel galileo gen2 ethernet. I am trying to get a webpage, but I can only connect to the ethernet, not the webpage. I get this in the Serial monitor: My code: /* Web client This sketch connects to a website…
2
votes
0 answers

How can I automatically start a LAN connection?

I have a Samsung Galaxy Note 10.1 with JuiceSSH installed. I also have Debian Linux installed via chroot. I'll be ordering an Intel Galileo to use as a portable compilation server. I have an attachment for the Note 10.1 that serves as a USB and an…
Theo Chronic
  • 121
  • 1
2
votes
0 answers

Anyone using ModBus RTU on Galileo gen 2?

I'm trying to communicate with some industrial hardware, on ModBusRTU, from my Intel Galileo Gen2 board. I use this board to convert UART to RS485 http://linksprite.com/wiki/index.php5?title=RS485_Shield_V2.1_for_Arduino and I can talk serially…
Aldo Biasi
  • 21
  • 2
1
vote
1 answer

How to ssh via USB Ethernet adapter

For a few days now, I have been connecting to my board which is hooked up to my router through a clutter of wires, over Wi-Fi. To spare my family from the risk of tripping, or hogging the extension cords all to myself, I'm looking for a way to…
madprogramer
  • 121
  • 5
1
2