From f2b4a5a0df57da81fa7d72e9c24016b0654c244f Mon Sep 17 00:00:00 2001 From: Gerardo Marx Date: Sun, 23 Feb 2020 09:15:01 -0600 Subject: [PATCH] syllabus defined and connection On branch master Changes to be committed: modified: .gitignore modified: es.org new file: readme.md deleted: readme.txt --- .gitignore | 0 es.org | 15 ++++++- readme.md | 130 +++++++++++++++++++++++++++++++++++++++++++++++++++++ readme.txt | 0 4 files changed, 144 insertions(+), 1 deletion(-) mode change 100644 => 100755 .gitignore mode change 100644 => 100755 es.org create mode 100644 readme.md delete mode 100644 readme.txt diff --git a/.gitignore b/.gitignore old mode 100644 new mode 100755 diff --git a/es.org b/es.org old mode 100644 new mode 100755 index 7563f4e..194e743 --- a/es.org +++ b/es.org @@ -52,7 +52,20 @@ $ping www.google.com |-------------------+---------+---------------------------------------+----------------------------------| | | | | | - +*** Terminal +| Command | Description | +|---------+------------------------| +| CTRL-c | Stop current command | +| CTRL-z | Sleep program | +| CTRL-a | Go to start of line | +| CTRL-e | Go to end of line | +| CTRL-u | Cut from start of line | +| CTRL-k | Cut to end of line | +| CTRL-r | Search history | +| | | +!! + +Repeat last command ** Beagle software ** Developing applications ** The linux file system and commands diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..8e7d4a4 --- /dev/null +++ b/readme.md @@ -0,0 +1,130 @@ +Issues to solve +=============== + +which version of beagles to buy +------------------------------- + +- I prefer to use the beaglebone black wi-fi, if it is possible to + connect them to Jade\'s internet +- Otherwise the ethernet version is preferred to use with usb-internet + sharing +- Install in computer the PuTTY software and some bash option to use. + +day-1: Introduction to the beagle-boards and basic applications +=============================================================== + +Introduction to the beagle boards. +---------------------------------- + +### Connection + +- Basic USB connection +- Connect to a IP address +- SSH connection + +ssh -X debian\@192.168.7.2 debian:temppwd + +### Sharing the internet through usb + +### Wi-Fi + +To connect to your Wireless network type the following command in the +terminal window: + + $sudo connmanctl + connmanctl> enable wifi + Enabled wifi + connmanctl> scan wifi + Scan completed for wifi + connmanctl> services + wifi_506583d4fc5e_544e434150413937414239_managed_psk + connmanctl> agent on + Agent registered + connmanctl> connect wifi_506583d4fc5e_544e434150413937414239_managed_psk + Passphrase? xxxxxxxxxxx + connected wifi_506583d4fc5e_544e434150413937414239_managed_psk + connmanctl> quit + $ping www.google.com + +### Basic File System Commands + + Name Command options example + ------------------- --------- --------------------------------------- ---------------------------------- + List files ls -a shows all ls -la + -l long format + -R recursive + Current directory pwd -P prints the physical location pwd + Change cd .. takes you up a level cd /home/gmarx + directory \~ takes you to home directory cd \~ + Make mkdir -p make parent directories as needed mkdir -p test/example + directory -v print a message for each directory mkdir -p /test/example + \*first example creates + folders inside the + current folder, other one + creates folder in root directory + + +### Terminal + + Command Description + --------- ------------------------ + CTRL-c Stop current command + CTRL-z Sleep program + CTRL-a Go to start of line + CTRL-e Go to end of line + CTRL-u Cut from start of line + CTRL-k Cut to end of line + CTRL-r Search history + + +!! + +Repeat last command + +Beagle software +--------------- + +Developing applications +----------------------- + +The linux file system and commands +---------------------------------- + +day-2: Control versions and interfacing electronics +=================================================== + +git for control version2 +------------------------ + +C and C++ +--------- + +GPIO interfacing +---------------- + +4. Bone scripts +--------------- + +UART communication +------------------ + +day-3: The internet of things +============================= + +A beagle board IoT sensor +------------------------- + +Sensor web server +----------------- + +Linux cron scheduler +-------------------- + +QT rich user interface +---------------------- + +day-4: The project +================== + +project development +------------------- diff --git a/readme.txt b/readme.txt deleted file mode 100644 index e69de29..0000000