Questions tagged [robot]

Questions related to physical robots in general should use this tag. For other topics, please use one of the more specific tags listed in the wiki of this tag, if appropriate. You may also consider asking your question on robotics stack exchange: https://robotics.stackexchange.com/.

Questions related to physical robots in general should use this tag. For other topics, please use one of the more specific tags listed in the wiki of this tag, if appropriate. You may also consider asking your question on robotics stack exchange.

Disambiguation:

742 questions
-1
votes
1 answer

Printing from within properties

I'm trying to make a robotics kit. Its designed to be simple so I'm using properties so when the users change a parameter the property method sends the serial command which controls motors/ servos/whatever. This is the code at the moment, directly…
user2137452
  • 143
  • 1
  • 4
  • 7
-1
votes
1 answer

Python list, remembering the first item, even after list has been deleted

I'm doing a robotic competition and I had a simple request. This is a simplified analogue of what I have: import random dumping_list=[] while True: markers = [#a list that could range in length from many to no elements] if len(markers)…
user2137452
  • 143
  • 1
  • 4
  • 7
-1
votes
2 answers

How to block this kind of URLs in robot.txt file?

here are two set of conditions and I want to block all url with /search/jobdescription? and search/jobdescription/ 1) http://<--sitename-->/search/jobdescription?id=0154613&css=a&act=a 2)…
Manojkumar
  • 1,351
  • 5
  • 35
  • 63
-2
votes
1 answer

What is wrong with my code (hearing the answers to yes/no quetions)?

I have some random yes/no questions. I want the robot to ask these questions and then listen for the user's response. However, with my current code, the answer the robot outputs is always "None" (aka it is not hearing any response), even when I…
-2
votes
1 answer

cartographer: Why does the position of radar not change during real-time mapping?

result Map No matter how I move the radar, the position of the radar that rviz shows don't change. Why is this happening? Do I need to add odom information to it? I want the radar position on the map to change as the radar position changes .lua…
-2
votes
1 answer

NameError: name 'getCornerInCameraWorld' is not defined

I am working with VSCode 1.68.1, Ubuntu 20.04. I am following link: https://courses.ece.cornell.edu/ece5990/ECE5725_Fall2020_Projects/Dec_21_Demo/Drawing%20Robot/eam348_mm2994_W/index.html from unittest import result import numpy as np import…
Manpreet
  • 43
  • 1
  • 6
-2
votes
1 answer

What is this error ? It's an digital assistant

This is my code: import speech_recognition import pyttsx3 from datetime import date, datetime robot_ear = speech_recognition.Recognizer() robot_mouth = pyttsx3.init() robot_brain = "" while True: with speech_recognition.Microphone() as mic: …
-2
votes
2 answers

How to expand a grid around a specific point in an matrix?

I have the following array and I would like to expand an area around X and turn array elements around X from 0 to 1. Any suggestions on how to do it? From this array [[0,0,0,0,0,0,0], [0,0,0,x,0,0,0], [0,0,0,0,0,0,0]] To this…
Kiwi
  • 173
  • 2
  • 9
-2
votes
1 answer

curl returns blank from valid url

I am trying to lookup a zipcode from usps using curl like so: curl "https://tools.usps.com/go/ZipLookupResultsAction!input.action?resultMode=2&companyName=&address1=&address2=&city=&state=Select&urbanCode=&postalCode=11111&zip=" This url does…
Cindy Turlington
  • 2,456
  • 3
  • 15
  • 20
-2
votes
1 answer

What is the meaning of /*+* in robots.txt file?

I have a question regarding robots.txt file. Disallow: Blog/*+* What does that mean?
-2
votes
1 answer

do-while loop learning with robots - becker package

I have been given the task of writing a segment of code using the becker.robots package and I must create a method called pickUpThings for a class which has a parameter for the number of Things to be picked up ie public void pickUpThings(int…
user3223921
  • 1
  • 1
  • 5
-2
votes
3 answers

How to avoid Google indexing specific app version on GAE?

I have a website deployed on gae. This resource has purchased a domain, but of course you can go to the site and a standard domain types app_id.appspot.com plus this can also go there and version_id.app_id.appspot.com. More than that if you enter…
andrejs82
  • 91
  • 1
  • 6
-3
votes
1 answer

How to setup internet networking for controlling a robot?

I built a robot and setup local networking by having it act as an access point. I then connect to the access point from a laptop and send commands over UDP using python. I would like to do the same thing but over the internet and Im really lost on…
Hamza
  • 5
  • 5
-3
votes
2 answers

Why cos() need rad on my calculator need only degrees

Please I have this Code for my Arduino dog but it doesn't work because I don't have convereted angle to rad for cos() operation but on end I need to get angle(after cos() operation). const int b = 200; //Lengt const int Pin = A0; //Pot pin int c =…
Kavista_
  • 11
  • 1
-3
votes
2 answers

Can i teach Arduino Uno with AI ? so it will work for me as robot

Before to dig into all things of AI , i have simple question , is it possible to teach "Arduino Uno" With Ai ? i just want to create a small brain or device that collects lots of data from server , it will filter data in any way and this particular…
yash fale
  • 235
  • 1
  • 4
  • 19
1 2 3
49
50