Loading...
  Show Posts
Pages: [1] 2 3 ... 26
1  Community / Workshops and Events / 4TH ARDUINO JAM @TIMELAB GHENT (Belgium) 18 Oct - 20 Oct 2013 on: May 07, 2013, 07:37:56 am
Hello fellow Arduino enthusiasts we are currently preparing the fourth Arduino Jam.

Starting at the 18th of October 2013 at 17h00 end ending 48 hours later on the 20th at 17h00, we will join together once again to let our creativity and knowledge flow into a yet non existing Arduino project that probably will be featured on instructables, hackaday or the Arduino Blog.

So enter the jam and join our quest for an Arduino- & joyful weekend.

for a €25,00 entrance fee you'll get:
- a goodie box
- food (breakfast, lunch and diner)
- snacks
- drinks
- a place to sleep (bring your own bed)
- a very nice place to JAM: @TIMELAB (3Dprinters, laser-cutter, hardware tools, ...)


more info on: http://www.arduino-jam.org
2  International / Nederlands / 4de ARDUINO-JAM 18 tot 22 oktober 2013 on: May 06, 2013, 10:11:08 am
Deze keer zijn we er hopelijk vroeg genoeg bij, om iedereen te kans te geven, zich tijdig in te schrijven voor de nu al 4de Arduino-Jam in Timelab te Gent in België. Er deden eerder ook al Nederlanders en een Spanjaard mee.

Meedoen kost 25 euro, waarvoor je een slaapplaats, eten en drinken en snacks krijgt, gedurende de 48 uur durende jam. Blijven slapen hoeft niet, je mag ook 48 uur doorwerken ;-) (of natuurlijk thuis gaan slapen).

Alle info (in het Engels) op de site www.arduino-jam.org, waar je ook foto's en info over de vorige 3 edities kan vinden.

Wie mag meedoen? iedereen, maar je moet toch al wel eens iets met Arduino gedaan hebben. Het is geen beginnerscursus over: "hoe sluit ik mijn Arduino aan op de computer, om een sketch te uploaden."

Zondag 20 oktober om 17h00 is iedereen sowieso welkom om naar de voorstelling en winnaarskeuze te komen kijken.
3  Community / Exhibition / Gallery / Re: Network settings web page FORM using EEPROM to save submit [DONE] on: April 29, 2013, 01:57:26 am
Hi there,

Using IDE 1.0.1 You'll need the pgmspace.h library: http://www.arduino.cc/en/Reference/PROGMEM

But you will encounter other problems to, better is to upgrade to IDE 1.0.3 (no need to look for pgmspace.h library) or higher and you should be ready to continue
4  International / Nederlands / Re: FTDI programmer / not in sync on: April 17, 2013, 02:56:16 am
Mocht het nog helpen, hier vind je een voorbeeld van wat je nodig hebt:

http:www.jo3ri.be/arduino/projects/barebonearduino-1
5  Using Arduino / Installation & Troubleshooting / Re: FOR PEOPLE having trouble with uploading to the Arduino Ethernet on: April 17, 2013, 02:50:12 am
Nope, the solution is to replace the bootloader. One way of doing this, is with an other Arduino.
6  International / Nederlands / Re: Welkom op het Nederlandstalige forum on: April 17, 2013, 02:43:03 am
Hoi Robert,

Veel plezier op het forum en waarschijnlijk kunnen wij ook nog wel van jou leren.

JO3RI
7  International / Nederlands / Re: ADAFRUIT 16x24 Red LED Matrix Panel ID:555 on: April 17, 2013, 02:41:29 am
Wow, cool.  smiley-cool

Kan je ons een video tonen van je project? En misschien een howto of je programma code?
8  International / Nederlands / Re: Arduino deurbel on: February 20, 2013, 10:21:27 am
http://hackaday.com/2013/02/20/video-phone-arduino-shield/

Doet dit wat jij wil?
9  Community / Workshops and Events / Re: ARDUINO JAM EDITION 3 @ TIMELAB GHENT (Belgium) on: February 07, 2013, 04:39:57 pm
@robtillaart, you're very welcome to join us, even maybe have a passby at saturday or sunday

TIMELAB
Brusselsepoortstraat 97
9000 Gent
10  Community / Workshops and Events / Re: ARDUINO JAM EDITION 3 @ TIMELAB GHENT (Belgium) on: February 06, 2013, 08:41:02 am
People, you are all still welcome to join us on the 3th Arduino-JAM in Ghent - Belgium
11  Community / Exhibition / Gallery / Re: Made my own TwitterClient and I think it's better than the example one on: February 06, 2013, 08:33:47 am
Quote
Hi JO3RI, thanks for explaining that to me. is there a way to change the behaviour to show say the 10 latest tweets, and to update if a new one is posted?

Well, If you that every tweet would have to be placed into a buffer in SRAM and every buffer is 140 bytes x 10 times is 1400 bytes only for those tweetbuffers (you only have 2048) and you need some for the libraries too.

You could use only 1 buffer and flow 10 tweets through it, but than you can't compare if it is a new tweet or not. To check if a new tweet is posted, I think you can only check periodically and compare the tweets you have, with the once you just checked.

This Arduino Client just asks the tweet stream, gets all of it and starts looking for the last tweet (the top) one, every 60 seconds.
try this in the url of your browser for a tweet account:

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

and this for a hashtag:

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

you'll see you have to refresh your browser to get an update

Maybe now you'll understand the problems to overcome. If you are going to try this, please ask your questions in the programming section, splitting your problem into small problems and try to tackle one at a time.

Have fun
12  Community / Exhibition / Gallery / Re: Made my own TwitterClient and I think it's better than the example one on: February 05, 2013, 05:00:30 pm
Because this a Gallery topic, It will be better to ask your question in an other Forum part. Just ask your question in the Programming Questions.

How to convert  this:
Code:
char tweet[]="Probando la ñ la ¿ y la ¡ por ejemplo.";
into this:
Code:
char tweet[]="Probando la ñ la ¿ y la ¡ por ejemplo.";

Put a link to your question here.

Please don't keep asking your questions here, make a new topic
13  Community / Exhibition / Gallery / Re: Made my own TwitterClient and I think it's better than the example one on: February 05, 2013, 09:05:09 am
What I did was this:
Code:
byte b = 0;
for (byte i = 0 ; i < 81 ; i++){   //this buffer is only 80 characters
  byte txt1 = buffer[i + b];      //look at the first character
  byte txt2 = buffer[i + b + 1]; //look at the second character
  byte txt3 = buffer[i + b + 2]; //look at the third character
  // lets make some of those special html characters readable
  if (txt1 == '%')
  // if you find an %, we will start looking for de second and tirth character
  // than we recalculate those into a new char en replace txt1 with the new one
  {
    char ascii[17] = {'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'};
    for (byte c = 2; c < 8; c++){
      for (byte d = 0; d < 17; d++){
        if (txt2 == ascii[c] && txt3 == ascii[d]){
          txt1 = 32 + (((c-2)*16)+d);  //recalculate 2 separate HEX to one new
          b= b + 2; // go the the next character and therefore skip 2
        }
      }
    }
  }
}

But you will not be able to use it as is (it only replaces 2 HEX characters into 1 new)

To help you further, post me your twitter buffer (tweet) as you get it on your console. Second I need to know if in your buffer (tweet) this "&#241" takes 5 places or 3. Because we need to know if 241 is one character or three (2,4,1). if it is three, you'll have to do something like this:

Code:
txt1 = (txt3*100) + (txt4*10) +txt5)

it might be as simple as to look for:
Code:
if (txt1 == '&') && (txt2 =='#')
{
  txt1 = (txt3*100) + (txt4*10) +txt5)
}
and do this for all characters in your buffer (see first code in this post) and combine (don't forget to skip 4 places instead of 2, and don't forget your tweet buffer is 140 not 80, and you'll probable need txt1 till txt5)

On the other hand you could use textfinder on your "tweet" buffer and look for &#241 and replace it with '241' (1 character)

oh, and could you post the twitter account that posts those funny Spanish characters?
14  International / Nederlands / Re: EthernetShield - server èn client on: February 04, 2013, 02:51:56 pm
Mooi, lukt je dit ook met 2 verschillende poorten? Bv server op 80 en client op 81?
15  Community / Exhibition / Gallery / Re: Made my own TwitterClient and I think it's better than the example one on: February 04, 2013, 02:44:04 pm
The way I have set-up this client, it only shows the last tweet, it does 't get pushed on every new tweet. It just checks the time-line every x seconds and shows that tweet.

Hope that answers your question.
Pages: [1] 2 3 ... 26