From blomba at unione.com.br Tue Nov 4 08:27:13 2008 From: blomba at unione.com.br (=?ISO-8859-1?Q?Bruno=20Teixeira=20Lomba?=) Date: Tue, 4 Nov 2008 11:27:13 -0200 Subject: [Pioneer-users] =?iso-8859-1?q?=5BAria-users=5D_Log_Sonar_Reading?= =?iso-8859-1?q?s?= In-Reply-To: References: Message-ID: <20081104132713.23863.qmail@hm1079.locaweb.com.br> Hi Aria-users, My problem was solved. Instead of using getx(), getY() and getTh(), I used getRawEncoderPose().getX()... Only then I get the correct value ... Thank you for the help... Hugs Bruno Teixeira Lomba Mon, 27 Oct 2008 20:50:00 -0300, "Bruno Teixeira Lomba" escreveu: > > > I ran the guiServerSonar with their tips and found the following problems: > > - I did not use robot.getRunningWithLock (), only robot.isRunning, because not compiled... > > - To turn it always generates the same values. He leads by 1 in 1 second, but always with the same values. I did the test only with the getX. > > Here attached image of the simulation with the issue said. > > Could you help me? > > Thanks again > > Bruno Teixeira Lomba > > > > Mon, 27 Oct 2008 09:09:17 -0400, Reed Hedges escreveu: > > > Bruno Teixeira Lomba wrote: > > > I thought of something like: > > > > > > while (robot.isRunning ()) ( > > > ArLog::log(ArLog::Normal, "% f", robot.getX()); > > > ); > > > > > > > This will work, if you also lock the robot and include a sleep to avoid > > consuming too much CPU time. You can use ArLog::init() to choose a file to write > > all log messages to. This will include messages printed by ARIA classes. (You > > could use fprintf or a std::ofstream instead if you don't want to use ArLog) > > > > > > > What point in the guiServerSonar I can put this? > > > > Replace the call to waitForRunExit() with your loop. > > > > > > Example: > > > > > > At start of program: > > // Write all Normal and Terse ArLog messages to the file "log.txt" (Verbose is > > filtered out) > > ArLog::init(ArLog::File, ArLog::Normal, "log.txt"); > > > > > > at end of program instead of robot.waitForRunExit(): > > > > // Log X, Y, Theta every second. > > while(robot.getRunningWithLock()) { > > robot.lock(); > > ArLog::log(ArLog::Normal, "%f %f %f", robot.getX(), robot.getY(), robot.getTh()); > > robot.unlock(); > > ArUtil::sleep(1000); //msec > > } > > > > > > > > There is also a class called ArDataLogger which writes information to a file > > separately from the main loop and not using ArLog. ArDataLogger must be > > configured using ArConfig (you use MobileEyes Tools->Robot Configuration to > > change parameters) and also given ArFunctor objects to invoke to retrieve data > > to log (use addString). > > > > Reed > > > > _______________________________________________ > > Aria-users mailing list > > Aria-users at lists.mobilerobots.com > > http://lists.mobilerobots.com/mailman/listinfo/aria-users > > > > To unsubscribe visit the above webpage or send an e-mail to: > > > > aria-users-leave at lists.mobilerobots.com > > > > > > > > > > From kennedy at MobileRobots.com Mon Nov 10 16:23:24 2008 From: kennedy at MobileRobots.com (William Kennedy) Date: Mon, 10 Nov 2008 16:23:24 -0500 Subject: [Pioneer-users] New uARCS firmware Message-ID: <6.2.5.6.2.20081110162013.03798860@MobileRobots.com> Hi, all: Just released uARCS version 4.5. Improvements include additional power port assignments and client commands. Download from http://robots.mobilerobots.com. Please read the README for details. Regards, William Kennedy, PhD From reed at mobilerobots.com Tue Nov 11 20:01:21 2008 From: reed at mobilerobots.com (Reed Hedges) Date: Tue, 11 Nov 2008 20:01:21 -0500 Subject: [Pioneer-users] [Aria-users] Log Sonar Readings In-Reply-To: <20081027225000.27640.qmail@hm1305.locaweb.com.br> References: <20081027225000.27640.qmail@hm1305.locaweb.com.br> Message-ID: <491A2AE1.6000704@mobilerobots.com> Hello, Bruno Teixeira Lomba wrote: > I ran the guiServerSonar with their tips and found the following problems: > > - I did not use robot.getRunningWithLock (), only robot.isRunning, because not compiled... I was mistaken about that, isRunning() should work fine > > - To turn it always generates the same values. He leads by 1 in 1 second, but always with the same values. I did the test only with the getX. > What compiler are you using? Can you print out any other information from ArRobot, or is it also incorrect? It looks from your image that SONARNL is otherwise working correctly, right? (it path plans and navigates correctly?) Reed From reed at mobilerobots.com Tue Nov 11 20:52:39 2008 From: reed at mobilerobots.com (Reed Hedges) Date: Tue, 11 Nov 2008 20:52:39 -0500 Subject: [Pioneer-users] Mounting SICK LRF to pioneer P3DX In-Reply-To: <002101c93796$3b5a5e50$07fea8c0@flowbenew> References: <31665422.902921206889892722.JavaMail.coremail@bj126app102.126.com><000901c89288$18eea640$4500640a@mjdell><47F13B44.8050702@mobilerobots.com> <48F34F3E.8080309@vanderbilt.edu> <002101c93796$3b5a5e50$07fea8c0@flowbenew> Message-ID: <491A36E7.3020209@mobilerobots.com> Hello, Does demo otherwise work correctly, or does it also lose connection in other modes? (can you drive it in teleop mode, for example) How is the SICK connected to the Pioneer? Did you use our laser integration kit (power switching board)? If so, make sure that the serial cable has all the needed lines connected correctly. If not, try running demo with the "-lpc false" argument, then it won't expect the laser to power on in response to the serial port being opened. You may also need to configure the computer's BIOS to remove any conflicts or other problems with COM3. Reed > > -----Original Message----- > From: pioneer-users-bounces at lists.mobilerobots.com > [mailto:pioneer-users-bounces at lists.mobilerobots.com] On Behalf Of Naim > Sidek > Sent: Monday, October 13, 2008 9:38 AM > To: Reed Hedges > Cc: Pioneer Users Mailing List > Subject: [Pioneer-users] Mounting SICK LRF to pioneer P3DX > > Guys, > > I have this problem after mounting the SICK to my Pioneer P3DX. I run > ./demo to check whether the laser is working. > But what I got is this... > > ArModeLaser is connecting to the laser. > ArSick: waiting for laser to power on. > Losing connection because nothing received from robot in 8000 miliseconds. > Lost connection to the robot because of error. > Exiting robot run because of lost connection. > ArSick: Disconnecting from laser that was not fully connected to... > this may cause problem later. > > The laser has power as the LED is ON and the serial cable is connected > to COM 3 as guided. > Anybody has the same experiance? > > Thanks > > -Naim > > > _______________________________________________ > Pioneer-users mailing list > Pioneer-users at lists.mobilerobots.com > http://lists.mobilerobots.com/mailman/listinfo/pioneer-users > > To unsubscribe visit the above webpage or send an e-mail to: > > pioneer-users-leave at lists.mobilerobots.com > > > > _______________________________________________ > Pioneer-users mailing list > Pioneer-users at lists.mobilerobots.com > http://lists.mobilerobots.com/mailman/listinfo/pioneer-users > > To unsubscribe visit the above webpage or send an e-mail to: > > pioneer-users-leave at lists.mobilerobots.com > From enghemin at yahoo.com Tue Nov 25 13:03:03 2008 From: enghemin at yahoo.com (Hemin Sh.Aumer) Date: Tue, 25 Nov 2008 10:03:03 -0800 (PST) Subject: [Pioneer-users] Yahoo Groups for Aria-users and Pioneer-users Message-ID: <575305.91146.qm@web56205.mail.re3.yahoo.com> Aria and Pioneer Fellows; I have created two yahoo groups for each of Aria users and Pioneer users if you would like to join. We will enjoy the advantage of posting messages and surfing them in the future for future users. I can see that some of the messges in these lists are repeated since we don't access posted messages in the past. Group homepages:? http://groups.yahoo.com/group/pioneer-users? and http://groups.yahoo.com/group/aria-users Best Regards Hemin Sh. Omer Nottingham, UK www.hemin.co.uk -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.mobilerobots.com/pipermail/pioneer-users/attachments/20081125/8903941b/attachment.html From lafary at mobilerobots.com Tue Nov 25 16:14:34 2008 From: lafary at mobilerobots.com (Matt LaFary) Date: Tue, 25 Nov 2008 16:14:34 -0500 Subject: [Pioneer-users] [Aria-users] Yahoo Groups for Aria-users and Pioneer-users In-Reply-To: <575305.91146.qm@web56205.mail.re3.yahoo.com> References: <575305.91146.qm@web56205.mail.re3.yahoo.com> Message-ID: <492C6ABA.9010906@mobilerobots.com> There's always been archives and the ability to search the archives for both aria-users and pioneer-users since the beginning. You can get to the archives from our support site http://robots.mobilerobots.com. We'll see about putting a link for searching the archive into the mailing list footer and/or making the archives more obvious somehow. The easiest way to search the aria-users archive is the search box on: http://robots.mobilerobots.com/wiki/Aria-users_Mailing_List The easiest way to search the pioneer-users archive is the search box on: http://robots.mobilerobots.com/wiki/Pioneer-users_Mailing_List I'd also like to remind people that our support site is now a Wiki and that you can search it by the box on the left of the support site http://robots.mobilerobots.com We've set up some answers to frequently asked questions on it (with more to come) and we've set aside an area for users to edit and contribute. There are more details at: http://robots.mobilerobots.com/wiki/Adding_to_this_Site Thanks, Matt LaFary MobileRobots Inc Hemin Sh.Aumer wrote: > Aria and Pioneer Fellows; > I have created two yahoo groups for each of Aria users and Pioneer users if you would like to join. We will enjoy the advantage of posting messages and surfing them in the future for future users. I can see that some of the messges in these lists are repeated since we don't access posted messages in the past. > Group homepages: http://groups.yahoo.com/group/pioneer-users and http://groups.yahoo.com/group/aria-users > > Best Regards > > > Hemin Sh. Omer > Nottingham, UK > www.hemin.co.uk > > > > > > ------------------------------------------------------------------------ > > _______________________________________________ > Aria-users mailing list > Aria-users at lists.mobilerobots.com > http://lists.mobilerobots.com/mailman/listinfo/aria-users > > To unsubscribe visit the above webpage or send an e-mail to: > > aria-users-leave at lists.mobilerobots.com