Are you able to recommend a good up-to-date book to help a newcomer to Arduino?
I think a series of practical examples would probably work best for me rather than C programming theory.
Thanks.
Are you able to recommend a good up-to-date book to help a newcomer to Arduino?
I think a series of practical examples would probably work best for me rather than C programming theory.
Thanks.
Can you recommend this book?
Exploring Arduino: Tools and Techniques for Engineering Wizardry Paperback – Illustrated, 5 Dec. 2019
Hi NeilIves
Arduino links of interest.
How to use this forum:
https://forum.arduino.cc/index.php?topic=149014.0
Listing of downloadable 'Arduino PDFs' :
Either Google >>>- - - - > arduino filetype: pdf
Or
https://www.google.ca/search?q=arduino+filetype%3A+pdf&rlz=1C9BKJA_enCA739CA739&oq=arduino+filetype%3A+pdf&aqs=chrome..69i57j69i65.1385j0j7&hl=en-US&sourceid=chrome-mobile&ie=UTF-8
Listing of downloadable 'C++ PDFs' :
Either Google >>>- - - - > C++ filetype: pdf
Or
https://www.google.ca/search?q=c%2B%2B+filetype%3A+pdf&rlz=1C9BKJA_enCA739CA739&oq=c%2B%2B+filetype%3A+pdf&aqs=chrome..69i57.22790j0j7&hl=en-US&sourceid=chrome-mobile&ie=UTF-8
Arduino cheat sheet:
Watch these:
Arduino programming syntax:
Arduino arithmetic operators:
Arduino control flow:
Arduino data types:
Understanding Destructive LC Voltage Spikes:
OR
Why MOSFET gate resistors:
Some things to read
LCD information:
OR
Reading a schematic:
https://learn.sparkfun.com/tutorials/how-to-read-a-schematic
Language Reference:
Foundations:
How and Why to avoid delay():
http://playground.arduino.cc/Code/AvoidDelay
Demonstration code for several things at the same time.
http://forum.arduino.cc/index.php?topic=223286.0
Multitasking:
Part 1:
Part 2:
Part 3:
Sparkfun Tutorials:
https://learn.sparkfun.com/tutorials?page=all
Micro Controllers:
Useful links:
https://forum.arduino.cc/index.php?topic=384198.0
Arduino programming traps, tips and style guide:
Arduino programming course:
Jeremy Blume:
Arduino products:
Motors/MOSFETs
Making a library
https://www.arduino.cc/en/Hacking/libraryTutorial
Switches:
Share tips you have come across, 700+ posts:
https://forum.arduino.cc/index.php?topic=445951.0
Debug discussion:
https://forum.arduino.cc/index.php?topic=215334.msg1575801#msg1575801
Frequently Asked Questions:
https://www.arduino.cc/en/main/FAQ#toc10
Number 'type's.
You select the 'type' best suited for your variables.
ex:
Oh, and have fun too !
Thank you laryyd for taking the time to type all that.
I'd like to have a book in my hand so I can take it with me and dip in when I have a chance. I am that last person on earth without a smart phone. I'll check out that book.
Neil
Is there a conspiracy here to scare the bejasus out of newcomers?
NeilIves:
Is there a conspiracy here to scare the bejasus out of newcomers?
LMAO!
I have was given an Arduino kit, which includes a book. The book is no use to me. I have no idea if it is any good. You can have it, if you are in the UK I will post to you, send me a PM with your address. If you are not in the UK then probably the postage is more than the book is worth.
Perry
I knew enough about programming before I bought my first Arduino so I didn't need a book.
I have had a quick browse through Arduino for Dummies in a bookshop and it seemed good. Some years back I had Sailing for Dummies and found it really excellent and it left me with a good opinion of the brand.
I suspect that nowadays most people get all the programming knowledge they need from the internet - I reckon there would be slim pickings for the author of a new "real book".
...R
Perry, thank you for the offer. Doing detective work, it appears your business phone may be in Nottingham. I'm in the West Midlands so not so far away. I'll investigate sending you a PM.
Robin,
Yes the Dummies books are good. Should I be concerned about the information being up to date?
Neil
Obviously it depends how you learn best, but in my view hands on time is where the rubber meets the road. Play around with the examples that come with the IDE and experiment. Tweak them, break them, debug and fix them. That'll teach you a lot.
If you really want book material, I'd suggest a book on C or C++. Just the first few chapters until you know about variables, control constructs, arrays and functions. No need to deal with pointers and classes to start with but having an idea of the core language would help I think.
I have had a quick browse through Arduino for Dummies in a bookshop and it seemed good.
Yes I know the Author, he is sound.
Should I be concerned about the information being up to date?
No, the basics are still he basics. All that has happened is that newer more complex boards have been introduced.
Grumpy_Mike:
Yes I know the Author, he is sound.
That's good to know. The authors of Sailing for Dummies have impeccable credentials including an Olympic medal for sailing.
...R
Thanks everyone for your input.
Wildbill, yes, I get your point about playing with the kit. I've just ordered another Uno R3 board and a relay, so I can experiment without having to dismantle my current project.
Neil
Get some Nanos. Unless you want to use "shields", they are much more practical and use exactly the same ode.
NeilIves:
Is there a conspiracy here to scare the bejasus out of newcomers?
Yes.
Truthfully, we want you to avoid making the same mistakes we all did learning the Arduino, so we may sound harsh. For example: String (capital-S) is a bad word here. (As is Fritzing, but you aren't into designing circuits yet).
If you avoid the String class and learn to use c-strings from the start, you will be a much happier camper when your programs get large and complex.
This link explains why.