New Book - Propeller Education Kit Labs: Fundamentals
Andy Lindsay (Parallax)
Posts: 1,919
Hi Folks,
Thanks to all of you who submitted suggestions and requests for the individually posted Propeller Education (PE) Kit Labs.· We have now compiled them into a book that will be released as a printed text early next year.· The book includes updated versions of all the labs along with front matter and some introductions.· Here are links to the full .pdf text and zipped source code:
Propeller Education Kit Labs - Fundamentals
···· Full Text (.pdf)···· Source Code (.zip)
Please send feedback/suggestions to editor@parallax.com.· You·can also contact me directly·using·the PM or email buttons to the left of this post.
Have a great New Year everyone!
Regards, Andy
P.S. There are some references to a couple of web PE Kit applications that have not been posted yet in the book.· They will be out soon, definitely before the printed text is released.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Andy Lindsay
Education Department
Parallax, Inc.
Post Edited (Andy Lindsay (Parallax)) : 12/26/2008 11:14:22 PM GMT
Thanks to all of you who submitted suggestions and requests for the individually posted Propeller Education (PE) Kit Labs.· We have now compiled them into a book that will be released as a printed text early next year.· The book includes updated versions of all the labs along with front matter and some introductions.· Here are links to the full .pdf text and zipped source code:
Propeller Education Kit Labs - Fundamentals
···· Full Text (.pdf)···· Source Code (.zip)
Please send feedback/suggestions to editor@parallax.com.· You·can also contact me directly·using·the PM or email buttons to the left of this post.
Have a great New Year everyone!
Regards, Andy
P.S. There are some references to a couple of web PE Kit applications that have not been posted yet in the book.· They will be out soon, definitely before the printed text is released.
- Oscilloscope and spectrum analysis of audio input added to the online ViewPort PE Kit Lab
- Updated following robot that uses the PID object
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Andy Lindsay
Education Department
Parallax, Inc.
Post Edited (Andy Lindsay (Parallax)) : 12/26/2008 11:14:22 PM GMT
Comments
Things like this is why I love Parallax! Even though I was trained as an EE, I had no idea how to work with microcontrollers at first, and very nice examples like these you' ve provided are defininetly the key to getting started. I think with normal places, you'd have to buy the book to get the code, and I'm very grateful to you and Parallax for providing it for free here.
I think it will get many more people into this world...
Ray
Ok, I was up late that thought this was a new post!
Sorry Daniel, I hope somebody gets to your question
Can you please post the code you're having trouble with?
I tried looking on p.43, but don't see the code you're referring to...
Can you tell me why not set parameters “pwm” and “DIR” to 6 and 7 directly but set as belows. thanks!
“BRK = 5
PWM = BRK + 1
DIR = PWM + 2”
Have you gotten the LCD to display characters yet? have you Gotten an RTC? Try looking into this object. Even though it is designed for a 4x20, it works quite well for these displays:
http://obex.parallax.com/objects/704/
and look into Kye's RTC object here:
http://obex.parallax.com/objects/420/
Take them one step at a time. I have integrated both of these in a few projects, and after some tinkering, you should be able to mesh them together to get what you are looking for.
When I try to download the Propeller ]Education Kit Labs - Fundamentals[/B .pdf file I get a "The page cannot be found" error. I'm on a iMac; but that shouldn't make a difference. Has anyone else with a iMac been able to download
Thanks a lot, I have already downloaded your object. After while I will study it.
I really appreciate your kindness and help.
Thanks from a students of China
high =1
low =0
PotLine =19
PotLine2 =20
repval =2
repval2 =2
BitsRead =12
BitsRead2=12
BitsRead3 =12
BitsRead4=12
chipSel = 19
chipClk = chipSel+1
chipDout = chipSel+2
chipDin = chipSel+3
chipSel2 = 23
chipClk2 = chipSel2+1
chipDout2 = chipSel2+2
chipDin2 = chipSel2+3
the link in the first posting is wrong
http://www.parallax.com/Portals/0/Downloads/docs/prod/prop/PELabsFunBook-v1.1.pdf
you are already on version 1.1
keep the documents coming
best regards
Stefan
Finally can download the PE labs book. Wow, over 200 pages. Lot of effort to get all that in place. Thank you Parallax.
I couldn't find an answer to this one in the propeller manual or elsewhere. Would also like to know where else to look in the future for similar questions.
Is there a chart or something that shows which commands are just like in PBASIC and which commands are different?
Comparision of PBasic comands to Spin? I have not seen anything. I actually cloned PBasic i/o commands in Forth to make things easier for myself as it certainly is easier to work that way.
You might have to just set up a speadsheet with PBasic in one column and Spin in another and see what you come up with. There are some big differences as Spin was based on Pascal. But you are always going to see some things that look similar in any two languges as logical tests and looping are ever present.
Being provided with a list is likely not going to help you learn as much as a DIY investigation. So I really encourage you to make your own.
http://obex.parallax.com/object/16
that emulates a few of the BS2 functions in SPIN.
It may give you some ideas.