Loading...
  Show Posts
Pages: 1 ... 3 4 [5] 6 7 ... 26
61  Community / Exhibition / Gallery / Re: Made my own TwitterClient and I think it's better than the example one on: October 18, 2012, 10:07:08 am
When I past this in my browser:

http://api.twitter.com/1/statuses/user_timeline.rss?screen_name=JO3RI&count=1%20HTTP/1.1

replace JO3RI with your own twitter name if you like.

and if I try the same thing with hashtag search,

http://search.twitter.com/search.atom?q=%23arduino

I still get to see the last tweets, so mine is still working
62  International / Nederlands / Re: Nieuweling zoekt hulp, arduino + android + hardwarebuttons on: October 04, 2012, 01:53:29 pm
of de arduino mega ADK. Was deze niet speciaal ontwikkeld, om met androids te gaan samenwerken?

http://arduino.cc/en/Main/ArduinoBoardADK
63  International / Nederlands / Re: inschrijven op ARDUINO JAM on: September 13, 2012, 10:01:48 am
Ondertussen (13-09-2012) zij er al 13 inschrijvingen voor 20 plaatsen.

nog 7 plaatsen vrij, wie komt er nog?
64  International / Nederlands / Re: 2 ethernet shields IP relay ? on: September 10, 2012, 06:56:32 am
Quote
Ik heb het rekenwerk niet gedaan maar al de bovenstaande oplossingen lijken mij goedkoper en sneller dan 2 ethernet kaarten met 2 IP stacks op 1 arduino.

inderdaad een Desktop Fast Ethernet Switch 5-port 10/100mbps moet je kunnen vinden voor minder dan 20 euro.
65  International / Nederlands / Re: Arduino Jam @Timelab van 21 tot 23 september on: September 10, 2012, 06:47:36 am
Hoi LG046,

Alles met Arduino en het thema "fiets" en "huis, tuin en keuken gebruik" is mogelijk en hoe zotter jullie het bedenken des beter. Je moet natuurlijk wel zorgen voor het materiaal als je heel extreem wil gaan.

Nu is het zo dat er vrijdag avond gebrainstormd wordt over alle voorstellen en dan kiest iedereen waaraan hij/zij wil werken. Arduino-jam geeft ook een paar ideeën, maar het zijn toch vooral de deelnemers die voorstellen moeten doen. ;-)

Over het slapen het volgende: je kan een bed and breakfast of hotel zoeken, maar je kan ook ter plaatse in een aparte ruimte slapen, als je een slaapzak en matrasje meebrengt en je bent vrij om te gaan slapen wanneer je wilt.
66  Community / Exhibition / Gallery / Re: Made my own TwitterClient and I think it's better than the example one on: September 10, 2012, 06:34:51 am
I did see your previous post, but I didn't had the time to answer yet. Very nice you solved this yourself.

I would love to see your code, but you should get some credit yourself. Make a new post, showing off your own project (try to include a youtube movie or some pictures), just make a quick reference to this post, explaining you started using this code and adapted it, for you own project.
67  International / Nederlands / Re: Goede opbouw programma on: September 06, 2012, 01:34:59 pm
Als je zo werkt:

http://www.arduino.cc/playground/Code/Function

Zal je programma niet "beter" werken, maar je code zal wel overzichtelijker worden. En ... Als je hetzelfde stukje code meermaals nodig hebt, dan is dit een goede oplossing.

Je kan het zelfs nog overzichtelijker maken als je elke functie op een apart tablad zet. ( ja, je kan in Arduino IDE tabbladen maken)

Veel plezier
JO3RI
68  International / Nederlands / Re: Goede opbouw programma on: September 05, 2012, 11:19:45 am
Even voor de duidelijkheid:

- Arduino kan geen multitasking, en kan dus enkel de dingen na elkaar uitvoeren (maar dan wel heel snel, aan 16 MHz)
- een Arduino uno heeft "slechts" 2 pins voor interrupts (onderbreken van het programma, om iets anders te doen en dan terug verder te doen)
- gebruik voor delay het principe van blinkwithoutdelay (zie de voorbeelden in arduino IDE)

dit zou je al aardig moeten helpen.
69  International / Nederlands / Re: inschrijven op ARDUINO JAM on: September 04, 2012, 03:00:51 pm
Ondertussen (04-09-2012) zij er al 10 inschrijvingen voor 20 plaatsen.

De helft is al bezet, wie vult de 2de helft aan?
70  Community / Exhibition / Gallery / Re: Made my own TwitterClient and I think it's better than the example one on: September 04, 2012, 01:13:11 pm
Kenneth87,

I might have overlooked something. When the tweet gets pulled and is been put into a char, it will stay in there. So the next time if it pulls a shorter tweet, the old one will partly stay in there too. So extualy the char should be cleared before filling it.
71  Community / Exhibition / Gallery / Re: Made my own TwitterClient and I think it's better than the example one on: September 03, 2012, 01:15:35 pm
Hi kenneth87,

I could just give you the code, but what is the fun in that. Arduino is about learning and discovering  smiley-wink
So what you need to learn more about is this:

you'll have to copy every part (piece by piece) from the char to an other char, by doing something like:

Code:
string1[0] = tweet[0]

now if you replace the 0 by i and let it repeat for let's say 70 times

Code:
for (byte i = 0; i < 71; i++){
string1[i] = tweet[i];
}

and you'll have to empty those chars every time before copying them, by doing something like:

Code:
memset (strin1,0,sizeof(string1));

at some point, you'll have to do that for "char tweet" too.

don't forget you'll need something like char string1[71] and char string2[71] before void setup().

So may I also ask, to submit any further questions on coding in the appropriate forum sections, because those or not directly related with this project.

Good luck using Arduino and Twitter.

72  Using Arduino / Displays / Re: Looking to see if anybody has managed to interface this nokia lcd to the arduino on: August 31, 2012, 07:47:11 am
somebody figured something out in Russia:

http://translate.googleusercontent.com/translate_c?depth=1&hl=en&ie=UTF8&prev=_t&rurl=translate.google.com&sl=auto&tl=en&twu=1&u=http://we.easyelectronics.ru/lcd_gfx/podklyuchenie-displeya-nokia-1616-na-primere-lpc1343.html&usg=ALkJrhjl-YpOiZreWUGWLRMBoYfTn0OZ-w

http://translate.google.com/translate?sl=auto&tl=en&js=n&prev=_t&hl=en&ie=UTF-8&layout=2&eotf=1&u=http%3A%2F%2Fwe.easyelectronics.ru%2Flcd_gfx%2Fvyvod-kartinok-na-displey-nokia-1616.html

maybe it helps
73  International / Nederlands / Re: Onderdelen apendages on: August 30, 2012, 12:52:32 pm
Hé,

Misschien geeft de instructable op deze link je een nieuw idee.  smiley-wink

http://www.instructables.com/id/Making-a-Touch-Sensitive-OnOff-Circuit-with-Bare-/
74  Community / Exhibition / Gallery / Re: Made my own TwitterClient and I think it's better than the example one on: August 30, 2012, 08:49:53 am
Quote
Could i ask why didnt you implement DHCP?

Well:
- using dhcp makes your code bigger when you upload the sketch
- sometimes it doesn't pick up an IP
- this way you know exactly what ip, subnet, gateway and DNS you are using

But:
- if you want, you can just erase this:
Code:
byte ip[] =  { 192,168,1,20}; //change this
byte subnet[] = {255,255,255,0}; //change this
byte gateway[] = {192,168,0,1}; //change this
byte dns[] = {192,168,0,1}; //change this
and replace this:
Code:
Ethernet.begin(mac, ip, dns, gateway, subnet);
with this:
Code:
Ethernet.begin(mac);

Arduino IDE will then auto include dhcp and your Arduino will use dhcp when started (or it should)
75  Community / Exhibition / Gallery / Re: MatrixClock: an 8x8 LED matrix and no buttons on: August 29, 2012, 04:34:03 am
Oké, this is cool, real cool. It even has less buttons than an iPhone  smiley-grin
Pages: 1 ... 3 4 [5] 6 7 ... 26