Take the 2-minute tour ×
Arduino Stack Exchange is a question and answer site for developers of open-source hardware and software that is compatible with Arduino. It's 100% free, no registration required.

Are there any Arduino-like board designs that are NOT using an AVR chip, but perhaps a chip like the Z80 or the 6502?

share|improve this question

migrated from electronics.stackexchange.com Feb 18 at 18:31

This question came from our site for electronics and electrical engineering professionals, students, and enthusiasts.

1  
Can you elaborate on what you mean by "Arduino-like"? Pin layout, IDE, etc. E.g. TI launchpad can be programmed using Energia which is an Arduino-like IDE and library based on Wiring but doesn't have the same pin layout. –  geometrikal Feb 18 at 8:51
    
What meaning do you put in Arduino-like ? Support for Arduino development environment? –  Nick Alexeev Feb 18 at 8:51
    
If you want to use PICs, maybe chipKit is worth a look. –  Roger Rowland Feb 18 at 9:39
    
Today is your lucky day: hackaday.com/2015/02/17/… –  John U Feb 18 at 10:19
    
Z80 and 6502 are CPUs (not MCUs) of another time; I am not even sure you can find some to buy now! Why one would create some board around them today? –  jfpoilpret Feb 18 at 18:33

1 Answer 1

You have to define what you mean by "Arduino-like" beyond just not using an AVR.

There's the Arduino Galileo using an Intel chip and supports the Arduino development tools, as well as the Arduino Due which is an Arm-based chip.

There's the Netduino which uses ARM chips (STMicro's) and is pin compatible with Arduino shields, but I don't know what the development framework is (other than it being in .NET), though this doesn't necessarily say much because not even all Arduino boards have the same pin compatibility (Nano boards are much smaller, LilyPad Arduinos which are round and semi-flexible, etc.)

Then there are related boards, but don't support the Arduino environment or any pin compatibility (TI Launchpad springs immediately to mind, but pretty much every manufacturer has some sort of demo board or development board for their MCU's).

There's a huge list of Arduino-like boards here (split into levels of compatibility, includes the official Arduino boards).

share|improve this answer
    
By Arduino-Like I mean a small board with the same or very similar physical dimensions of an Arduino Uno and a very similar feature set related to Analog and Digital I/O, memory, video, etc. –  Jonas Gorauskas Feb 18 at 10:31
    
Define 'very similar'? And what video features does an Arduino have?? –  Wouter van Ooijen Feb 18 at 13:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.