|
|
|
![]() |
|
|||||||
|
||||||||
![]() |
|
|
Thread Tools | Rate Thread | Display Modes |
|
|
|
#1
|
|||
|
|||
|
Re: How Did You Learn How To Program?
Quote:
|
|
#2
|
||||
|
||||
|
Re: How Did You Learn How To Program?
Before Last Year, i have never programmed any language in my life (except for HTML in 5th grade). There was a kid starting a robotics team at my school, and i thought it would be cool to sign up and build some robots. I signed up and there was no one to program the robot. I played around with LV a little bit, and a little bit more, until i logged about 100 hours of LV. After that, i learned C++, VB and Java. But as i have learned, you are NEVER done learning how to program, every time you drag that box, or write that next line of code, there is always much much more to learn, or at least, a different way to code what you just coded.
|
|
#3
|
|||
|
|||
|
Re: How Did You Learn How To Program?
Quote:
|
|
#4
|
|||||
|
|||||
|
Re: How Did You Learn How To Program?
My avatar is a Commodore PET 4032. 40 character wide screen... 32 kB of RAM. Made in Canada! You could get a floppy drive for them... but they cost a fortune. Mostly our programs were saved and loaded from audio cassette tapes. Type in "load", press "play" and wait five or ten minutes.
They cost a fair bit back in the '70's but our local high school had one and my Dad, a teacher there, could take turns taking it home on the weekend to learn how to use it. I'm not sure how many hours I spent down in the basement with a manual and computer magazines figuring out how to write code in BASIC. There weren't many people around to teach programming, at least in northern BC, in those days, and there certainly was no internet to go to for advice. But it was a fabulous time to learn programming because the expectations were so low. If you could make a COMPUTER do SOMETHING... ANYTHING... it was considered pretty impressive. If you could make it do what you wanted it to do, well... that was even better. When Zork and Space Invaders were high tech, it wasn't too hard for one person, working alone in their basement, to come up with an impressive game or application. That's why I like teaching programming using robots and microcontrollers. Most people have no preconceptions of what a robot or microcontroller should be able to do... so programming a $2.00 PIC to receive an IR remote control signal and drive a mini sumo robot is seen as "impressive", even though it is a reasonably simple task. But regardless of the platform or language, there is no substitute for hours upon hours of creating, troubleshooting, modifying and debugging your own code. Jason |
|
#5
|
||||
|
||||
|
Re: How Did You Learn How To Program?
Quote:
It's amazing to see how many different ways to code something. |
|
#6
|
||||
|
||||
|
Re: How Did You Learn How To Program?
Quote:
|
|
#7
|
|||
|
|||
|
Re: How Did You Learn How To Program?
Quote:
|
|
#8
|
|||
|
|||
|
Re: How Did You Learn How To Program?
I learned JAVA (my first programming language) 3 or 4 years ago alone, because my programming class was way too slow.
After two years programming in java we started our FRC team and as a very small team i was the only one on the electronics and programming. Because we started our team two weeks after the kickoff, i didnt have the time to go to a LabView course or something like that. I watched a "how to make a simple motor vi with joystick" video in NI's website and understood the basic code, and then - everything is the same in LabView. I made myself a testing enviroment - took all the electronics and connected them and tried different codes. After two weeks of this i could program the 2009's robot. Good luck ![]() |
|
#9
|
|||||
|
|||||
|
Re: How Did You Learn How To Program?
I learned how to program by emulating examples. I got good at programming by writing programs. I got very good at programming by writing programs in collaboration with other programmers, where each piece of software was treated as a contract to perform a specific task given certain conditions.
I learned LabVIEW by reading the documentation, following the examples, and going through the provided tutorials. I know a lot about how it works, I can usually make it do what I want, and I can often do a good job of explaining to others how to make it do what they want. I'm not at the level of proficiency where I can just wire things up without first doing some analysis and planning. David, I believe you will always have trouble with LabVIEW until you set aside what you already "know" about programming. You can't understand a dataflow language well by attempting to apply concepts from procedural programming languages; you'll likely get stuck on the superficial similarities and fail to grok the true nature of things. Go through the online videos with an open mind and as little preconception as you can. |
|
#10
|
||||||
|
||||||
|
Re: How Did You Learn How To Program?
My experience is pretty similar to Alan's. I learned all of the text based languages from books and a lot of trial programming.
As for LabVIEW, I learned it from the LVmastery tutorial videos. Those are great. Other than those videos, it's been looking at examples and some good old-fashioned trial and error. I'm waaaaaaaaaay far from a LabVIEW expert, but I've been able to make it do what I want with relatively little effort. I think I spent a total of 3 hours watching the videos and that is all it took to start doing some cool stuff. That is what makes the dataflow languages pretty nice - you don't need big books and days of learning. They are made to be very intuitive from the start and the need to memorize the details of the syntax is mostly eliminated. |
|
#11
|
||||
|
||||
|
Re: How Did You Learn How To Program?
I learned C++ by looking through tutorials and Java in a class, but like most others here, I just looked through the Labview examples to learn Labview. I can program in Labivew now, but I'm not used to its format and always get confused by the mess of wires I create.
|
|
#12
|
|||
|
|||
|
Re: How Did You Learn How To Program?
My first year with 339, I went into build season with virtually no programming experience - just a tiny bit of experimentation with VB. The first time I walked into a meeting, the programming mentor intercepted me and asked, "programming and electronics?" I said yeah, that sounds interesting, and ended up on the programming team. That season, I didn't do much coding at all. In fact, I didn't write anything myself; just added debug statements and changed constants in others' code. I recommended a few algorithms for autonomous, but other members and mentors took care of the actual implementation because I didn't have the knowledge to do it myself. That year, I picked up some of the general concepts of programming but didn't fully understand everything I was doing; this lead to, for example, me being confused about the difference between preprocessor macros and global variables.
The next year, my second in FIRST, I was more capable. Halfway through that build season, I wrote my first complete function - in Notepad, no less - an algorithm that used a gyro sensor to keep the robot moving forward along a straight path. It didn't work at all initially, but I kept tweaking it and working on it (without mentor assistance), and eventually made it work so well, we failed to notice when one of our CIMs burnt out because the software corrected for it perfectly. That Summer was the last one before we switched to the new control system, and my mentor wanted us to prepare for the change, so I learned C++ and we discussed how we would design the program once the new control system became available. This is where I really made the jump to a self-teaching programmer. I loved the concept of object-oriented programming and became an expert in C++, to the point that my mentor wanted me to "dumb down" my code so that new students could better understand it. I was using templates, multiple inheritance, functors, and who knows what else. He also explained to me how compilers and programming in general work, so I began to understand the purpose of the constructs I was dealing with. We even went into optimization for a bit. In 2009, my senior year with 339, I wrote the majority of the robot code from scratch. Looking back, it's amazing how quickly I jumped from not knowing anything about programming to being a self-motivated expert in the subject. |
|
#13
|
||||
|
||||
|
Re: How Did You Learn How To Program?
about 4 hours of looking at different vis in labview. majorly tired after that.
|
|
#14
|
||||
|
||||
|
Re: How Did You Learn How To Program?
Quite honestly, i learned coding through studying open source programs and reading half of a c manual
|
|
#15
|
||||
|
||||
|
Re: How Did You Learn How To Program?
Good question, i took a basic CS class in our school, however, i mainly taught robotics stuff myself. I was pretty successful, until I deployed my first code, then i realized that it is a lot harder then i expected. If i ever had any q's, i went to this forum for help... so yeah, that is how i learned.
|
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How did you learn to program? | vivek16 | Programming | 20 | 04-03-2007 18:15 |
| What is MAX script and how did you learn programing? | BuddyB309 | 3D Animation and Competition | 1 | 22-02-2006 01:06 |
| How did you control your Robot? 1? 2? Wheel? How? | ChrisCook | Control System | 9 | 17-05-2005 21:41 |
| I want ro learn how to program! | RubberDucky | Programming | 6 | 28-03-2005 20:42 |
| How did you learn how to use Inventor? | Greg McCoy | Inventor | 26 | 24-05-2003 01:55 |