• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Where to buy an Arduino (Ireland)

 
Ranch Hand
Posts: 43
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi all

can someone recommend a good source to purchase arduino uno R3 ? (ireland)

thanks
 
Bartender
Posts: 2661
19
Netbeans IDE C++ Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Abid Ramay wrote:hi all

can someone recommend a good source to purchase arduino uno R3 ? (ireland)

thanks


Are you looking for a brick and mortar shop, or an online source?

I bought mine second hand from a local barter website.

There is also this daring kickstarter project:
The 9$ arduino if you can wait a bit.
 
Abid Ramay
Ranch Hand
Posts: 43
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Are you looking for a brick and mortar shop, or an online source?

I bought mine second hand from a local barter website.

There is also this daring kickstarter project:
The 9$ arduino if you can wait a bit.



9$ arduino project looks great .. can i please ask for some on-line sources as well .. thanks
 
Bartender
Posts: 1166
17
Netbeans IDE Java Linux
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Abid Ramay wrote:can i please ask for some on-line sources as well



I buy pretty much everything through eBay.
 
Abid Ramay
Ranch Hand
Posts: 43
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
thanks all .. i just wanted to cross reference my sources .. as you know online fraud pretty much prevails .. thanks again
 
Abid Ramay
Ranch Hand
Posts: 43
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
one more things .. my interest in arduino is because i want to gain a better understanding of computer architecture . e.g. RISC architecture etc

my thoery is, learning on this platform will eliminate the complexities of PC e.g. no operating system . No HDD . No RAM .. ok there is RAM in arduino, given its small scale - it is not complex at all ..

please correct if i am wrong .. !!

thanks
 
Jan Cumps
Bartender
Posts: 2661
19
Netbeans IDE C++ Linux
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
There is RAM on the Arduino. Check the specs to see how much.

To learn RISK, you'll have to use AVR assembler language.
The canonical way to use an Arduino is in C. That language hides the machine language (RISK) instructions.
 
Abid Ramay
Ranch Hand
Posts: 43
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
yes agreed .. but my theory makes sense .. in terms of complexity compared to PC
 
Richard Tookey
Bartender
Posts: 1166
17
Netbeans IDE Java Linux
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Abid Ramay wrote:yes agreed .. but my theory makes sense .. in terms of complexity compared to PC



I can't 100% agree . Currently I'm primarily using PIC16F628A chips which have a RISC instruction set but just because it is RISC does not make it better than say a 68000 instruction set. All opp codes on the PIC operate on bytes and the RAM (also ROM on the bigger 16F PIC chips) is paged. One has to go though all sort of very frustrating contortions to perform even some very simple stuff like 16 bit addition. I have programmed a fair number of different microprocessors using assembler and RISC chips are definitely more challenging than non-RISC .

I have also done significant programming on the Arduino Mega 2560 but mainly in C and C++ and the use of the higher level language makes one much more productive than writing assembler. The boot loader that is installed by default in the Mega make it very very easy to do in circuit programming. My advice would be to start using your Arduino writing in C or C++ and then when you are happy and feeling adventurous you can think about using assembler. I do think that just jumping in with the assembler will be a BIG mistake.

 
Abid Ramay
Ranch Hand
Posts: 43
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
ok thank you guyz. you all have been very helpfull.
 
Yes, of course, and I accept that blame. In fact, i covet that blame. As does this tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic