Arduino is an open-source electronics prototyping platform.
-3
votes
1answer
84 views
The Twitter REST API v1 is no longer active. Please migrate to API v1.1
this is my python code that Does not work anymore
i get this message:"The Twitter REST API v1 is no longer active. Please migrate to API v1.1"
The python code basically uses the python-twitter ...
3
votes
1answer
75 views
C++ << operator overloading and templates with Arduino
I'm working on an arduino project where I have been using the following template for printing various data types with the << operator
template<class T>
inline Print &operator ...
0
votes
3answers
49 views
Arduino library prolem: multiple definition of function
Today I encountered a weird problem when trying to use IRremote library, and I managed to strip down the problem as following. If you have a folder in libraries, with Foo.h and Foo.cpp inside, and ...
0
votes
1answer
23 views
Writing data to arduino python
I'm trying to write data from python to serial with this sketch
import serial
import smtplib
import time
s=serial.Serial('/dev/tty.usbserial-AH01LLHS',9600)
precx=500
ist=30
i=0
while True:
...
0
votes
1answer
26 views
fatal error when commit using TortoiseGit
While attempting to GIT Commit -> "master" a Arduino INO file I get the error:
tortoiseGit fatal: LF would be replaced by CRLF in xxx.INO
I had chosen 'Commit Line Endings as they are' as I was ...
0
votes
0answers
14 views
Arduino crashes only if I set the time
I'm VERY puzzled and was hoping that someone here could provide some sanity.
I have a fairly elaborate Arduino sketch that is responding to scheduled events
at the time designated in the event. In ...
0
votes
1answer
25 views
Time measuring in month with Arduino
Is there a way to get the month with an Arduino?
I'm building my own Garduino, for an indoor garden, and I need to know the month since I've start to change the light period.
0
votes
0answers
13 views
Arduino ADK Connection error
i'm trying to learn how to use arduino mega adk with my android.
I made a simple code just to check the connection, and it is returning a error.
Device addressed... Requesting device descriptor. ...
0
votes
1answer
16 views
Reading sensor input with Pic32 and MPIDE
So I currently have a pic32 arduino. I'm pretty new to this stuff, so any tips would be appreciated.
I have a sensor that has 3 pins, 5VDC, ground, and sensor output. I connected the sensor output ...
0
votes
1answer
23 views
Arduino Ethernet Reading from PHP File
I am writing a simple Arduino Ethernet program. The program sends an HTTP GET Request to the server and then the server echos "Hello World" and I should be able to receive it through the Arduino ...
0
votes
1answer
20 views
DIY XBox360 guitar hero controller
I'm making a diy guitar controller for guitar hero on xbox 360.
As far as i could see on the web, it's not possible to build anything from stratch and just plug in the console due to MS security ...
-1
votes
2answers
357 views
How to connect to twitter with API 1.1 possibly using OAuth authentication?
Help help help!
I have made a website + a project in Arduino that both fetches tweets from my own twitter account and acts according to these. Today the twitter API changed to version 1.1 and now my ...
0
votes
1answer
15 views
plotting real time csv data in android
By using arduino, python serial I am able to log data from a temp sensor from dev/ttyACM0 into a file timetemp.csv
which looks like
Wed Jun 12 12:59:45 2013,27
Wed Jun 12 12:59:46 2013,27
Wed ...
0
votes
1answer
39 views
Arduino wireless and Node.js
I'm working on an Arduino project to control motors and read sensors. I decided to use the web view using Node.js as a medium channel to read/write from the serial port to the browser using either ...
0
votes
0answers
18 views
Arduino library constructor without parameters
i want to write a library for Arduino for using the Nunchuk. In the tutorial they use an constructor with parameters. Because of that you also have to fill in the parameters in the constructor in the ...