Month: November 2022
-
How to copy files from raspberry pi to PC using SCP
Introduction Suppose there is a file on your raspberry pi, which you want on your desktop PC or laptop. You can download the file from your raspberry pi. To do this you must be connected to the same router. SCP stands for Secure Copy Protocol Suppose there is a movie in your download folder named…
-
How to make an analog clock using Python Turtle Graphics – 3
Python Code
-
How to make simple graphics in Turtle Graphics – 2
Python Code Python Code
-
Python Turtle Graphics Introduction – 1
Turtle is a simple, easy and fun way to learn graphical programming. It contains very simple commands. By combining together these and similar commands, intricate shapes and pictures can easily be drawn. You can create simple drawings using the turtle module. You can also create simple animations. If you want to learn about the nitty-gritty…
-
How to make a SONAR based on an ultrasonic sensor
SONAR stands for Sound Navigation and Ranging. SONAR uses the concept of ultrasonic waves that get reflected from the object in front of it. And the time it takes between the transmission and reception tells us about the distance it has traveled. Components Required After making the connection you have to make a sketch and…
-
How to make a simple Traffic Light using Arduino UNO
Everyone must have seen those big lights in red, yellow, and green color at the corner of every road. Some even flash. Some stay lit all day long. Big junctions have a separate controller which synchronizes these lights. So that the traffic flows smoothly. And the possibility of having a deadlock is minimized. That is…
-
Python – Basic Mathematical Programs
How to perform addition. How to perform subtraction How to perform multiplication How to perform division How to perform if-else operations How to perform a while loop operation
