search
HomeWeb Front-endJS TutorialRobotics: Build autonomous robots with Raspberry Pi and JavaScript

机器人技术:使用 Raspberry Pi 和 JavaScript 构建自主机器人

In recent years, the world of robotics has undergone a major shift toward open source technologies and platforms. A very popular platform is the Raspberry Pi, a small and affordable single-board computer. Combined with the power and versatility of JavaScript, developers can now embark on an exciting journey into the world of robotics. In this article, we'll explore how to build an autonomous robot using a Raspberry Pi and JavaScript, diving into code examples, explanations, and its output.

Setting up the Raspberry Pi

Before we delve into the realm of JavaScript robotics, it’s crucial to set up your Raspberry Pi correctly. First, we need to install the necessary operating system, such as Raspbian, which is the official operating system of Raspberry Pi. Once installed, we can connect peripherals like keyboard, mouse, and monitor, and even remotely access the Raspberry Pi using SSH.

Once our Raspberry Pi is up and running, we can start exploring the world of JavaScript robots.

Control servo motor

Servo motors are key components in many robotic systems, allowing us to control the position or orientation of individual components. JavaScript provides us with libraries like “onoff” that allow us to interact with hardware components like servo motors.

Example

Let’s look at a code example that demonstrates how to control a servo motor using JavaScript:

const Gpio = require('onoff').Gpio;

// Create a new servo motor instance
const servo = new Gpio(17, 'out');

// Function to move the servo motor to a specific angle
function moveServo(angle) {
   servo.servoWrite(angle);
}

// Move the servo motor to 0 degrees
moveServo(0);

// Wait for 2 seconds, then move the servo motor to 90 degrees
setTimeout(() => {
   moveServo(90);
}, 2000);

illustrate

In the above code, we import the onoff library and create an instance of the GPIO class for the servo motor connected to GPIO pin 17. The servoWrite method allows us to control the position of the servo motor by specifying the desired angle.

When we run the code, the servo motor initially moves to 0 degrees, then after a 2 second delay it moves to 90 degrees.

Control DC motor

DC motors are commonly used in robotics to provide motion. JavaScript can also control DC motors using libraries like “pigpio”. Let's explore an example that demonstrates how to control a DC motor using JavaScript.

Example

const Gpio = require('pigpio').Gpio;

// Create a new DC motor instance
const motor = new Gpio(17, { mode: Gpio.OUTPUT });

// Function to control the DC motor
function controlMotor(speed, direction) {
   motor.servoWrite(speed * direction);
}

// Move the DC motor forward at full speed
controlMotor(255, 1);

// Wait for 2 seconds, then stop the motor
setTimeout(() => {
   controlMotor(0, 1);
}, 2000);

illustrate

In the above code, we are using the "pigpio" library to control a DC motor connected to GPIO pin 17. We create an instance of the Gpio class and set the mode to Gpio.OUTPUT. The servoWrite method is used to control the speed and direction of a DC motor. Positive values ​​for the direction variable move the motor forward, while negative values ​​move the motor backward.

Code example moves a DC motor forward at full speed and stops after a 2 second delay.

Establish autonomous behavior

Now that we have explored controlling the various components, let's take it one step further and build autonomous behavior for our robot. We can do this by incorporating sensors (such as ultrasonic sensors) and writing code to respond to their input.

Let’s consider an example where we build a simple obstacle avoidance robot using a Raspberry Pi, servo motors, DC motors, and ultrasonic sensors. A servo motor will be used to rotate the ultrasonic sensor, while a DC motor will provide the motion.

Example

const Gpio = require('onoff').Gpio;
const UltraSonic = require('ultrasonic-rx');

// Create instances of servo motor, DC motor, and ultrasonic sensor
const servo = new Gpio(17, 'out');
const motor = new Gpio(18, 'out');
const ultrasonic = new UltraSonic({ echoPin: 23, triggerPin: 24 });

// Function to control the servo motor
function controlServo(angle) {
   servo.servoWrite(angle);
}

// Function to control the DC motor
function controlMotor(speed) {
   motor.servoWrite(speed);
}

// Function to move the robot forward
function moveForward() {
   controlMotor(255);
}

// Function to stop the robot
function stop() {
   controlMotor(0);
}

// Function to avoid obstacles
function avoidObstacle() {
  const distance = ultrasonic.distance();

   if (distance < 30) {
      controlServo(90);
      stop();
   } else {
      controlServo(0);
      moveForward();
   }
}

// Continuously monitor the environment for obstacles
setInterval(avoidObstacle, 100);

illustrate

In the above code, we use the "ultrasonic-rx" library to interact with the ultrasonic sensor connected to GPIO pins 23 and 24. We create instances of the GPIO class for servo motors and DC motors. The controlServo function is responsible for controlling the position of the servo motor, while the controlMotor function controls the speed of the DC motor.

avoidObstacle function reads the distance of the ultrasonic sensor and determines if an obstacle is within 30 cm. If an obstacle is detected, the servo motor will rotate to the front and the robot will stop. Otherwise, the servo motor faces sideways and the robot moves forward.

in conclusion

JavaScript, with the help of platforms like the Raspberry Pi, provides an accessible and flexible way to delve into the exciting field of robotics. In this article, we explore how to build an autonomous robot using a Raspberry Pi and JavaScript. We cover controlling servo and DC motors, and using sensors to build autonomous behavior. With provided code examples, explanations, and output, you can start your own JavaScript bot journey. The possibilities are endless, and with JavaScript as your ally, you can unlock a world of creativity in building autonomous robots.

The above is the detailed content of Robotics: Build autonomous robots with Raspberry Pi and JavaScript. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:tutorialspoint. If there is any infringement, please contact admin@php.cn delete
From C/C   to JavaScript: How It All WorksFrom C/C to JavaScript: How It All WorksApr 14, 2025 am 12:05 AM

The shift from C/C to JavaScript requires adapting to dynamic typing, garbage collection and asynchronous programming. 1) C/C is a statically typed language that requires manual memory management, while JavaScript is dynamically typed and garbage collection is automatically processed. 2) C/C needs to be compiled into machine code, while JavaScript is an interpreted language. 3) JavaScript introduces concepts such as closures, prototype chains and Promise, which enhances flexibility and asynchronous programming capabilities.

JavaScript Engines: Comparing ImplementationsJavaScript Engines: Comparing ImplementationsApr 13, 2025 am 12:05 AM

Different JavaScript engines have different effects when parsing and executing JavaScript code, because the implementation principles and optimization strategies of each engine differ. 1. Lexical analysis: convert source code into lexical unit. 2. Grammar analysis: Generate an abstract syntax tree. 3. Optimization and compilation: Generate machine code through the JIT compiler. 4. Execute: Run the machine code. V8 engine optimizes through instant compilation and hidden class, SpiderMonkey uses a type inference system, resulting in different performance performance on the same code.

Beyond the Browser: JavaScript in the Real WorldBeyond the Browser: JavaScript in the Real WorldApr 12, 2025 am 12:06 AM

JavaScript's applications in the real world include server-side programming, mobile application development and Internet of Things control: 1. Server-side programming is realized through Node.js, suitable for high concurrent request processing. 2. Mobile application development is carried out through ReactNative and supports cross-platform deployment. 3. Used for IoT device control through Johnny-Five library, suitable for hardware interaction.

Building a Multi-Tenant SaaS Application with Next.js (Backend Integration)Building a Multi-Tenant SaaS Application with Next.js (Backend Integration)Apr 11, 2025 am 08:23 AM

I built a functional multi-tenant SaaS application (an EdTech app) with your everyday tech tool and you can do the same. First, what’s a multi-tenant SaaS application? Multi-tenant SaaS applications let you serve multiple customers from a sing

How to Build a Multi-Tenant SaaS Application with Next.js (Frontend Integration)How to Build a Multi-Tenant SaaS Application with Next.js (Frontend Integration)Apr 11, 2025 am 08:22 AM

This article demonstrates frontend integration with a backend secured by Permit, building a functional EdTech SaaS application using Next.js. The frontend fetches user permissions to control UI visibility and ensures API requests adhere to role-base

JavaScript: Exploring the Versatility of a Web LanguageJavaScript: Exploring the Versatility of a Web LanguageApr 11, 2025 am 12:01 AM

JavaScript is the core language of modern web development and is widely used for its diversity and flexibility. 1) Front-end development: build dynamic web pages and single-page applications through DOM operations and modern frameworks (such as React, Vue.js, Angular). 2) Server-side development: Node.js uses a non-blocking I/O model to handle high concurrency and real-time applications. 3) Mobile and desktop application development: cross-platform development is realized through ReactNative and Electron to improve development efficiency.

The Evolution of JavaScript: Current Trends and Future ProspectsThe Evolution of JavaScript: Current Trends and Future ProspectsApr 10, 2025 am 09:33 AM

The latest trends in JavaScript include the rise of TypeScript, the popularity of modern frameworks and libraries, and the application of WebAssembly. Future prospects cover more powerful type systems, the development of server-side JavaScript, the expansion of artificial intelligence and machine learning, and the potential of IoT and edge computing.

Demystifying JavaScript: What It Does and Why It MattersDemystifying JavaScript: What It Does and Why It MattersApr 09, 2025 am 12:07 AM

JavaScript is the cornerstone of modern web development, and its main functions include event-driven programming, dynamic content generation and asynchronous programming. 1) Event-driven programming allows web pages to change dynamically according to user operations. 2) Dynamic content generation allows page content to be adjusted according to conditions. 3) Asynchronous programming ensures that the user interface is not blocked. JavaScript is widely used in web interaction, single-page application and server-side development, greatly improving the flexibility of user experience and cross-platform development.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function