oransen wrote: ↑Fri Nov 15, 2019 8:13 am
This is what I did not understand, I imagined a much more powerful Arduino type thing.
Think of the Pi as a normal general purpose computer, like your PC. It runs a full Linux operating system.
It can be used to program an Arduino.
oransen wrote: ↑Fri Nov 15, 2019 8:13 am
Presumably I can connect the PI to the PC to transfer already existing Python programs to it?
Of course. The Pi is just another computer. Connect it to your router as usual, and use "ssh" to log in, or "scp" to copy Python files around. (Or Putty for Windows.)
For example, on my PC I can type:
scp hello.py
[email protected]:
which will transfer the little Python program "hello.py" to the home directory for user "pi" on my Raspberry Pi (called, boringly, "pi").
If your PC runs Windows, you might need WinSCP or some such, but its just the same. There are various options, but I find the "scp" command easy because its just like the regular copy command.
There is a lightweight version of the OS (Raspbian Lite) which is useful if you never want to attach a keyboard, mouse and screen.