Tutorial
Table Of Contents
- 1. Premise
- 2. Raspberry Pi System Installation and Developmen
- 3 Log In to The Raspberry Pi and Install The App
- 4 Assembly and Precautions
- 5 Controlling Robot via WEB App
- 6 Common Problems and Solutions(Q&A)
- 7 Set The Program to Start Automatically
- 8 Remote Operation of Raspberry Pi Via MobaXterm
- 9 How to Control WS2812 RGB LED
- 10 How to Control The Servo
- 11 How to Control DC Motor
- 12 Ultrasonic Module
- 13 Line Tracking
- 14 Make A Police Light or Breathing Light
- 15 Real-Time Video Transmission
- 16 Automatic Obstacle Avoidance
- 17 Why OpenCV Uses Multi-threading to Process Vide
- 18 OpenCV Learn to Use OpenCV
- 19 Using OpenCV to Realize Color Recognition and T
- 20 Machine Line Tracking Based on OpenCV
- 21 Create A WiFi Hotspot on The Raspberry Pi
- 22 Install GUI Dependent Item under Window
- 23 How to Use GUI
- 24 Control The WS2812 LED via GUI
- 25 Real-time Video Transmission Based on OpenCV
- 26 Use OpenCV to Process Video Frames on The PC
- 27 Enable UART
- 28 Control Your AWR with An Android Device
- Conclusion
60
to the Raspberry Pi again, if there is no save username and password will need to input the user name and
password, if the IP address of the Raspberry Pi changed, you need to start a new dialogue.
● After a successful login, the left column is replaced with a file transfer system, which allows you to
interact with the system inside the Raspberry Pi. If you want to return to session selection, just click Sessions.
●Programs you write on other devices can be transferred to the Raspberry Pi by simple drag and drop,
and then the Raspberry Pi can be controlled in the terminal to execute the program, or the files in the raspberry
Pi can be dragged to other devices.
●If you want to use another IDE to edit files in Raspberry Pi, you can find the file you want to edit in the file
transfer system on the left side of the MobaXterm. Right-click on this file and select your IDE so you can use
your favorite on other devices IDE to edit the Raspberry Pi file, after editing is completed CTRL+S save the file.
● However, it should be noted that when you use MobaXterm's file transfer system to edit files in the
Raspberry Pi, you need to pay attention to the permissions problem, because the file transfer system does not
have root permissions, so if you are prompted to save after editing the file The permission denied error causes
the file cannot be saved after editing. You need to use the following command to give the file you want to edit
permission to be edited by MobaXterm:
sudo chmod 776 [FileName]
●You can learn more about Linux permissions through maketecheasier article from the article link
Understanding File Permissions。