(no subject)
May. 2nd, 2011 11:30 pm![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
So the only output device I have for this Arduino board is a blinky light. So I whipped together some code that outputs morse code through it.
But since my only input device is a button that I finally wedged into the right holes, code that reads morse code might be more useful. As it stands, I can only put text at compile time.
But that's just a trivial C++ exercise. Circuit design is the really new stuff.
But since my only input device is a button that I finally wedged into the right holes, code that reads morse code might be more useful. As it stands, I can only put text at compile time.
But that's just a trivial C++ exercise. Circuit design is the really new stuff.
no subject
Date: 2011-05-03 06:37 am (UTC)no subject
Date: 2011-05-03 07:24 am (UTC)It'd be easier to start with a language like Python or Ruby. Not only are those a little more forgiving, but they have an immediate mode that you can play around in, like the old 8-bit BASICs had. You can even try them in a browser: http://www.trypython.org/ or http://tryruby.org/
Also, Java has aged gracefully, and Head First Java (http://www.amazon.com/gp/product/0596009208/ref=as_li_ss_tl?ie=UTF8&tag=therpen-20&linkCode=as2&camp=217145&creative=399349&creativeASIN=0596009208) was how I learned it. (They touched on it at DeVry but I'd forgotten it all by the time I picked this book up.)
no subject
Date: 2011-05-04 06:29 am (UTC)no subject
Date: 2011-05-04 06:56 am (UTC)If you don't want to risk any money, you can download Processing (http://processing.org/); the IDE and language is the same, but you can write desktop and web programs with it. It's full of tutorials and examples.