Tagged Questions
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.
22
votes
7answers
474 views
Looking for ways for a robot to locate itself in the house
I am hacking a vacuum cleaner robot to control it with a microcontroller (Arduino). I want to make it more efficient when cleaning a room. For now, it just go straight and turn when it hits something.
...
10
votes
3answers
668 views
robot programming with lisp?
I'm looking for some examples of robot/AI programming using lisp. Are there any good online examples available anywhere (preferably not too academic in nature)?
8
votes
3answers
423 views
Guiding a Robot Through a Path
I have a field filled with obstacles, I know where they are located, and I know the robot's position. Using a path-finding algorithm, I calculate a path for the robot to follow.
Now my problem is, I ...
6
votes
3answers
98 views
How to match similar colours in Java using getRGB
I am taking screenshots of the screen using robot and then searching for smaller images within those screenshots. This works on Windows but not OS X because of gamma correction. The best solution I ...
6
votes
1answer
124 views
Using a virtual machine inside of a game?
I am in the design stage of making a 3d "robot programming" game. Inspired by games such as Colobot, Robot Odyssey, Cholo, etc.
I want every robot in the game to have it's own isolated ...
6
votes
7answers
2k views
Get the VK int from an arbitrary char in java
How do you get the VK code from a char that is a letter? It seems like you should be able to do something like javax.swing.KeyStroke.getKeyStroke('c').getKeyCode(), but that doesn't work (the result ...
4
votes
1answer
193 views
Smoothing path of a robot
I'm calculating shortest path of a robot on a plane with polygonal obstacles. Everything works well and fast, no problems there. But, how to smoothen the path so it becomes curvy ?
Below is a picture ...
4
votes
2answers
891 views
Selenium and Headless Environment
I recently installed Python 2.7, Robot Framework and the Selenium Library (I still don't know if I succeded though...) on a Red Hat Server to run some test on a web application.
So I tried a simple ...
3
votes
2answers
2k views
android: api to external usb devices for robotic applications
Android devices become incredible cheap (especially those with android v1.6). I'm considering to use one as a brain of autonomous robot. Unfortunately I didn't find any info on that.
I would like to ...
3
votes
2answers
916 views
Lego Mindstorm NXT, Cocoa, and HiTechnic Sensors
I've taken the existing code from this project, and very happy with it so far.
I'm now however in a position where I need to make use of some third-party sensors which I've purchased from hitechnic, ...
2
votes
1answer
34 views
How to get a direction for a robot from a method in a sensor class?
I am making a program using the LRV(Least recently visited) Algorithm. Basically, I design the algorithm for a robot to traverse through a grid (which is a 2D char array). The robot whilst traversing ...
2
votes
1answer
91 views
Java Swing: Possible to send robot keyboard input to specific JFrame windows?
I am using a third party java library which spawns new JFrame windows. How do I make java.awt.Robot to send clicks and keyboard inputs to that specific window when it appears? I would run it in a ...
2
votes
2answers
63 views
Using Java Robot class. Ways to halt execution of the program?
I've used the Robot class in java numerous times as a quick workaround on menial tasks. Stopping execution is always a problem (which needs to be numerous times during testing). What I want is a ...
2
votes
3answers
246 views
Thread.sleep(time) vs. robot.wait(time)
I'm trying to write some GUI and integration tests using JUnit and FEST.
Here is what I have:
@Before
public void setUp(){
try{
program.main(args);
robot.wait(30000); //gives ...
2
votes
1answer
194 views
Microcontroller choice and programming for Robot [closed]
I'm getting into microcontroller programming with an introductory robot that I'll be building with a team that has about 10 motors. It will also need to send and receive signals from and to a computer ...
2
votes
1answer
496 views
Integration with Robot framework's keyword management for Selenium Object Pattern Design
I have been shopping for tools for UI automation quite a while. And, the reason being so cautious is to prevent from shooting myself in the foot. The link below best describes my fear
...
2
votes
3answers
507 views
Modelling a robotic arm motion in 3D, ideas?
Hey folks. I hope you don't mind if I ask for a bit of advice regarding modelling robotic systems. I've recently become rather interested in using inverse kinematics (IK) to control a 5 dof robotic ...
2
votes
2answers
222 views
Why do I receive a SIGSEGV signal while using the Aria robotics API?
I am using the Aria C++ programming libs for mobile robots (http://robots.mobilerobots.com/wiki/ARIA). I am new to this API so I wanted to start with a simple action class derived from ArAction. Now I ...
2
votes
1answer
415 views
Ever used Pyro? (Python Robotics)
I was just reading up on a robotics-oriented implementation for Python called Pyro. It stopped production in 2005, but I wonder if anyone knows if its usable in 2.6, and how it compares to other ...
2
votes
4answers
2k views
PHP IRC Robot, Send Command, but now I need the bot to read the command
I have a PHP IRC Robot that I use in my channel and I need it to make OPs to specific set users in the script by me. Anyways I want the robot to check if the user is logged into NickServ to prevent ...
1
vote
3answers
81 views
Robotics Club Programming Portion
My school has entered into a Robotics Tournament that competes several schools against each other(this is my school's first year). The objective of the robot is to shoot a ball into a hoop. I am a ...
1
vote
5answers
75 views
Java: OutOfMemory using Robot#createScreenCapture(Rectangle)
I was writing a program for capturing the screen at a set interval and when I started testing, I found that I get an OutOfMemoryException almost immediately after it starts capturing pictures. I tried ...
1
vote
2answers
46 views
Macro recorder/player
I am making a sort of Macro recorder/player
I have done the player part with utils such as java.awt.Robot() which emulates basic human mouse/keyboard output commands, reading an XML file.
I am stuck ...
1
vote
2answers
59 views
Java robot and image comparison
I'm toying with an idea for creating a Java application to automate a process that I have to do regularly and before I start any coding I thought I would seek advice as to the best way to approach it.
...
1
vote
1answer
52 views
Java's createScreenCapture not working on OS X, produces completely wrong colours
If I run this code:
BufferedImage image = new Robot().createScreenCapture(new Rectangle(Toolkit.getDefaultToolkit().getScreenSize()));
ImageIO.write(image, "png", new File("takenwithrobot.png"));
...
1
vote
1answer
57 views
Robot.createScreenCapture is changing the colors
Here's the class I wrote to take screenshots:
public class imagemanipulation {
Dimension screenResolution;
Rectangle screenRectangle;
Robot robot;
imagemanipulation() {
try ...
1
vote
2answers
102 views
Making mouse movements humanlike
I am making and auto clicker using java.awt.Robot. One of the concerns i have however is the movements aren't very humanlike. Can anyone suggest some changes to my code to make it more human like? ...
1
vote
2answers
165 views
Forex Trading Platform for C# [closed]
What are the good free Forex trading platforms for writing algorithms in C# for automated trading.
I tried cAlgo but it is basic, needs more features and slow developping...
I tried NinjaTrader but it ...
1
vote
4answers
133 views
How to make a robot follow a line using its video camera
I'm trying to get a robot to identify a line on the ground and follow it.
I've searched the internet and found many examples of line following robots, but all of them are using specialized sensors to ...
1
vote
1answer
89 views
java.awt.Robot: how to send mouse/keyboard events to a specific window? with cross-platform support?
So from this question In Java Swing how do you get a Win32 window handle (hwnd) reference to a window? it appears that I can get the window32 handle .
would it be possible for java.awt.Robot to send ...
1
vote
2answers
78 views
How can i make my RS232 cable setup so that from Java, i can turn on and off the 12voltage lights? [closed]
I have a 12volt light + Battery.
When i connect + and - the light turns on. Now how can connect that + and - wire to my RS232 cable which is connected to my Java application. And from Java button ...
1
vote
6answers
229 views
Can we control a robot using an Android phone?
After stepping into the world of Android, I wondered if an Android phone can be used as a remote to control a basic pick and place robot . If just an SMS could be send to control the action of a robot ...
1
vote
4answers
379 views
Crawler with Python?
I'd like to write a crawler using python. This means: I've got the url of some websites' home page, and I'd like my program to crawl through all the website following links that stay into the website. ...
1
vote
2answers
130 views
Deny access but allow robots i.e. Google to sitemap.xml
Is there a method where you can only allow robots such as Google, Yahoo, or other search engine robots to my sitemap which is located at http://www.mywebsite.com/sitemap.xml. Is this possible to not ...
1
vote
0answers
403 views
Webots: ImportError: DLL load failed: The specific module could not be found
I'm working with a program called Webots and I'd like to get some Python scripts working, but when I run the sample script that comes with the software I get an error message.
Error Message:
...
1
vote
2answers
52 views
avoiding automatic software to control web services?
Let's imagine I build a web service, and a client application that call this web service.
Is there any way to prevent other software than mine to make call to the web service ?
For example, imagine ...
1
vote
1answer
64 views
LRF (laser rangefinder) sensor data help
I am a beginner at using sensors and Player and i have trouble understanding the data generated. I would be very thankful if you could help me.
One .log file is generated every time we run the ...
1
vote
0answers
192 views
Issue with robot exploration in Assembly (emu8086)
I'm working on an assembly program using the emu8086. The program uses the built-in robot device to emulate a virtual robot on a simulated 6x9 map. The map will contain unknown amounts of walls and ...
1
vote
2answers
802 views
Looking for a Wi-Fi microcontroller to use with a robot
I want to make a Wi-Fi controlled robot.
After a lot of research, I decided to use an Asynclab's BlackWidow which was the best way for me to do this.
But unfortunately, this product is out of stock ...
1
vote
0answers
87 views
Running Rational Robot scripts without Robot installed
I have a Rational Robot script that I would like to deploy to multiple workstations. I wanted to know if there is a way to run this script without having Robot installed on those workstations. As you ...
1
vote
3answers
427 views
Control a robot with an iPhone App
I have to make a spy robot for a school project (like Rovio).
Actually, I don't know how to make it with a command card.
And because I know how to make iPhone Apps (I made 7), I thought it
would be ...
1
vote
1answer
258 views
How to send commands at runtime to iRobot Create in C/C++?
Question title basically says it all. I want to be able to tell it what to do while its running instead of downloading a whole program onto it. Right now I'm doing this by using Python and the ...
1
vote
1answer
127 views
Is there a Windowlicker for wxpython?
Having recently read "Growing OO systems guided by tests", I am very impressed with the windowlicker testing utility for java/junit. Basically it wraps the GUI and GUI-interaction with drivers and ...
1
vote
3answers
297 views
Inject Keystrokes
Is there a way to inject keystrokes into the JVM on the Android platform?
I'm looking for something like java.awt.Robot but I don't think that's available on Android
thanks
1
vote
1answer
58 views
Problem with web code generator designer
I want to write a web-based code generator for a Python crawler. Its aim is to automatically generate code so a developer doesn't need to write it, but I've run into this problem: in one of my ...
1
vote
10answers
827 views
communication between two computers with 2 c++ programs
I have one computer that is running a c++ program to control a robot and another computer that is running a computer vision system (also written in c++). I would like for these two programs to be able ...
1
vote
1answer
488 views
Player/Stage Path Planning
So I have map and config files that represent the world in which my robot is going to be trying to get through. My robot has to get from the top left corner to the bottom right corner of the map ...
1
vote
1answer
85 views
the best method for google indexing text content in images?
I have a webpage where I put 1 image once in a while, this is just like xkcd.com
I would like to know how to let google know the text in my images.
My approach is to put the text in alt html ...
1
vote
2answers
893 views
How to create a web crawler/spider/robot?
Is there a way to make a web robot like websiteoutlook.com does? I need something that searches the internet for URLs only...I don't need links, descriptions, etc.
What is the best way to do this ...
1
vote
2answers
85 views
php robot for maintainance of db?
i want to have an automatic maintainance of my mysql database.
eg deletes all old threads, users and checks if a user hasnt been active (ive set up that javascript is updating a status column in ...