@hevans1944
Unlike a microcontroller, the PI is not 'flashed' or programmed in a typical sense.
The Pi boots from an SD card, and will run the binaries provided.
The RasPi in easy-mode is downloading and installing a pre-made OS to the SD card and starting up the PI.
Once booted, you can use the PI like a conventional computer with a monitor, keyboard, and mouse. You can also configure it to allow remote access via a computer using ssh.
The vast majority of OS images for the Pi are linux based, and as such, there is a huge collection of open-source resources that can be exploited to get your Pi to do whatever you want. Programming a Pi in easy-mode is much like making a computer program, with the exception of being able to directly manipulate physical IO pins on the Pi. This is typically done with reading and writing values to special files within the OS. There are some major limitations on the Pi when used in easy-mode though... although you have access to the physical pins, you must do so through the OS... so timing specific applications can be impossible/very difficult to implement in a 'bit-baning' sense. The OSes supplied do typically come with support for various serial communication methods, so this will only rarely be a problem. (For example... communicating directly with ws2812 addressable LEDs.
Aside from this limitation, the 'program' on your pi can be a compiled binary, or a script that the OS interprets. Language support is vast, and can be done in pretty much any language you are already comfortable with. If using a script or binary, the OS needs to be configured to run the 'program' when the device boots, and optionally watch the process to handle any errors, glitches or crashes by resetting itself or the malfunctioning 'program'.
If you have problems finding a Pi specific solution to your programming needs, you can look at generic solutions for other Linux distributions. (Remember, the various linux distros are 'families'. Ubuntu and Mint for example are 'Debian' based, and almost all Debian solutions will work.)
We could easily end the easy-mode programming methods here, but there is an even easier method...
There are many graphically based programming environments that the Pi can run and use... This is more attuned to the 'robot' kits from Lego and K'nex.
Such a programming solution is NodeRed, which is more thinking and drawing than actual coding... Of course, the further removed you are from the final code, the less control over the very very fine details you have.
http://www.raspberrypi.org/downloads/
http://www.raspberrypi.org/meet-jasper-open-source-voice-computing/
Unlike a microcontroller, the PI is not 'flashed' or programmed in a typical sense.
The Pi boots from an SD card, and will run the binaries provided.
The RasPi in easy-mode is downloading and installing a pre-made OS to the SD card and starting up the PI.
Once booted, you can use the PI like a conventional computer with a monitor, keyboard, and mouse. You can also configure it to allow remote access via a computer using ssh.
The vast majority of OS images for the Pi are linux based, and as such, there is a huge collection of open-source resources that can be exploited to get your Pi to do whatever you want. Programming a Pi in easy-mode is much like making a computer program, with the exception of being able to directly manipulate physical IO pins on the Pi. This is typically done with reading and writing values to special files within the OS. There are some major limitations on the Pi when used in easy-mode though... although you have access to the physical pins, you must do so through the OS... so timing specific applications can be impossible/very difficult to implement in a 'bit-baning' sense. The OSes supplied do typically come with support for various serial communication methods, so this will only rarely be a problem. (For example... communicating directly with ws2812 addressable LEDs.
Aside from this limitation, the 'program' on your pi can be a compiled binary, or a script that the OS interprets. Language support is vast, and can be done in pretty much any language you are already comfortable with. If using a script or binary, the OS needs to be configured to run the 'program' when the device boots, and optionally watch the process to handle any errors, glitches or crashes by resetting itself or the malfunctioning 'program'.
If you have problems finding a Pi specific solution to your programming needs, you can look at generic solutions for other Linux distributions. (Remember, the various linux distros are 'families'. Ubuntu and Mint for example are 'Debian' based, and almost all Debian solutions will work.)
We could easily end the easy-mode programming methods here, but there is an even easier method...
There are many graphically based programming environments that the Pi can run and use... This is more attuned to the 'robot' kits from Lego and K'nex.
Such a programming solution is NodeRed, which is more thinking and drawing than actual coding... Of course, the further removed you are from the final code, the less control over the very very fine details you have.
http://www.raspberrypi.org/downloads/
http://www.raspberrypi.org/meet-jasper-open-source-voice-computing/