You can subscribe to this list here.
2007 |
Jan
|
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(10) |
Aug
(2) |
Sep
(17) |
Oct
(63) |
Nov
(12) |
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2008 |
Jan
|
Feb
(1) |
Mar
|
Apr
(7) |
May
(2) |
Jun
(3) |
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Robotics P. u. h. l. <rob...@li...> - 2007-09-27 23:49:07
|
hi, i am working in a proyect that use a embedded operating system (uClinux) in an FPGA, and we are trying to control the iRobot Create trhough uClinux i want to know if is it posible to use the Stage commands or functions to work in this OS (uClinux)?? thanks for your answers ____________________________________________________________________________________ Shape Yahoo! in your own image. Join our Network Research Panel today! http://surveylink.yahoo.com/gmrs/yahoo_panel_invite.asp?a=7 |
From: Robotics P. u. h. l. <rob...@li...> - 2007-09-26 14:36:11
|
Hello, Sorry for the delay. The next few exercises that will be added involve reinforcement learning with the Create and the Gumstix. These exercises might eventually be incorporated with MSRS, but not in the next few weeks. Please feel free to contribute to the workbook as you see fit. We have opened up the workbook as a wiki, so you should be able to create a new account (link on left side of the screen) and modify anything. Adding to the code is a little bit more tricky. It will require you to get a sourceforge account, which is easy, and then have us give you permission to check code back into the repository. -nate On 9/20/07, Robotics Primer users help list <rob...@li...> wrote: > Thanks for yesterday's reply. I am teaching & developing a college course > based on using the Create with Robotics Primer and MSRS. I've noticed more > instructions for this option are being developed, with new exercises being > posted from just a couple weeks ago. I am delighted to see this, but would > like to know what other exercises/instructions will be added soon (in the > next 2 weeks) that extend more of the Robotics Primer exercises for use with > Create and MSRS?? The more the merrier and I would like to incorporate > these real time in my course. Thanks.. A. Gilmore > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Roboticsprimer-users mailing list > Rob...@li... > https://lists.sourceforge.net/lists/listinfo/roboticsprimer-users > > |
From: Robotics P. u. h. l. <rob...@li...> - 2007-09-20 15:32:08
|
Thanks for yesterday's reply. I am teaching & developing a college course based on using the Create with Robotics Primer and MSRS. I've noticed more instructions for this option are being developed, with new exercises being posted from just a couple weeks ago. I am delighted to see this, but would like to know what other exercises/instructions will be added soon (in the next 2 weeks) that extend more of the Robotics Primer exercises for use with Create and MSRS?? The more the merrier and I would like to incorporate these real time in my course. Thanks.. A. Gilmore |
From: Robotics P. u. h. l. <rob...@li...> - 2007-09-18 17:31:44
|
> I am attempting to set up Microsoft Robotics studio for use with the Create > robot. I have installed MSRS v 1.5, but the links on this page > to "copy these files" are not working. They do not point to files, but only > to a login page I don't seem to be able to access. Please advise! That link needs to be removed (I'll do it today). Due to licensing issues, we cannot post our code using MSRS. Instead, pseudocode will be distributed instead, sorry. I will, in about a week or so, post instructions for how to create your own project in MSRS and, generally, the commands you need to use. > Also, I get an error message that says "dssnode was stopped. Check that no > other services are using nodes 50000 and 50001." Any advice on how to get > around this? Do you get this message when using any MSRS program, or just ones connected with the RoboticsPrimer? If it is with any MSRS program, then I think Microsoft would be the best place to go for support. My first thoughts though is that you may be running another instance of the DSS-server somewhere else. > thanks A Gilmore > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > _______________________________________________ > Roboticsprimer-users mailing list > Rob...@li... > https://lists.sourceforge.net/lists/listinfo/roboticsprimer-users > > |
From: Robotics P. u. h. l. <rob...@li...> - 2007-09-18 16:12:03
|
On the webpage: http://roboticsprimer.sourceforge.net/workbook/Introduction::iRobot_Create/Roomba_and_Microsoft_Robotics_Studio I am attempting to set up Microsoft Robotics studio for use with the Create robot. I have installed MSRS v 1.5, but the links on this page to "copy these files" are not working. They do not point to files, but only to a login page I don't seem to be able to access. Please advise! Also, I get an error message that says "dssnode was stopped. Check that no other services are using nodes 50000 and 50001." Any advice on how to get around this? thanks A Gilmore |
From: Robotics P. u. h. l. <rob...@li...> - 2007-08-25 17:33:16
|
Hello, You are correct, that is a bug. Thanks for the fix. -nate On 8/22/07, Robotics Primer users help list <rob...@li...> wrote: > I downloaded the Wookbook code from the website and I believe there is a bug on the create driver. > At file roboticsprimer-0.1/create/create.c > function set_speed, line 378 > > int16_t rightVel = linear_speed + (angular_speed/1e2) * CR8_HALF_AXLE_LENGTH; > int16_t leftVel = linear_speed - (angular_speed/1e2) * CR8_HALF_AXLE_LENGTH; > > it should be > int16_t rightVel = linear_speed + (angular_speed/1e3) * CR8_HALF_AXLE_LENGTH; > int16_t leftVel = linear_speed - (angular_speed/1e3) * CR8_HALF_AXLE_LENGTH; > > since CR8_HALF_AXLE_LENGTH was defined in mm at create.h. > > Thanks, > Marcos > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Roboticsprimer-users mailing list > Rob...@li... > https://lists.sourceforge.net/lists/listinfo/roboticsprimer-users > |
From: Robotics P. u. h. l. <rob...@li...> - 2007-08-23 02:33:26
|
I downloaded the Wookbook code from the website and I believe there is a bug on the create driver. At file roboticsprimer-0.1/create/create.c function set_speed, line 378 int16_t rightVel = linear_speed + (angular_speed/1e2) * CR8_HALF_AXLE_LENGTH; int16_t leftVel = linear_speed - (angular_speed/1e2) * CR8_HALF_AXLE_LENGTH; it should be int16_t rightVel = linear_speed + (angular_speed/1e3) * CR8_HALF_AXLE_LENGTH; int16_t leftVel = linear_speed - (angular_speed/1e3) * CR8_HALF_AXLE_LENGTH; since CR8_HALF_AXLE_LENGTH was defined in mm at create.h. Thanks, Marcos |
From: Robotics P. u. h. l. <rob...@li...> - 2007-07-09 12:42:15
|
Ahh, I have been using Player CVS, which has GetWatts. You can comment out this for now, unless you really need to get the power from the create. -nate On 7/5/07, Robotics Primer users help list <rob...@li...> wrote: > Okay, I feel like I'm getting close. > > I got a few errors: > client/Client.cc:531: error: 'class PlayerCc::PowerProxy' has no member > named 'GetWatts' > > ... 'GetJoules' > etc. > > I'm just going to put in zeros and see if I can compile. > > Dan > > > On 7/5/07, Robotics Primer users help list < > rob...@li...> wrote: > > > > Ahh, yes, we need to work on the documentation and name schemes. > > > > In the workbook source, there should be a directory called player. Run > > "scons install" in this directory. > > > > The code in "player" is used to create a nice interface to the real > > Player code. This code enables the exercises to focus only on Gumstix > > stuff, and not on the Player stuff. > > > > -nate > > > > > > > > On 7/5/07, Robotics Primer users help list > > < rob...@li...> wrote: > > > I trying to scons the first exercise, but I keep running into: > > > > > > Package roombaDev was not found in the pkg-config search path > > > > > > Can you give me any hints on finding / installing this package? Should > > > player have built this? > > > > > > Dan > > > > > > -- > > > Daniel Bedard > > > Senior Research Device Engineer > > > > > > Renaissance Computing Institute > > > at the University of North Carolina, Chapel Hill > > > 100 Europa Drive, Suite 540 > > > Chapel Hill, NC 27517-7583 > > > > > > da...@re... > > > phone: 919-445-9695 > > > fax: 919-445-9684 > > > > ------------------------------------------------------------------------- > > > This SF.net email is sponsored by DB2 Express > > > Download DB2 Express C - the FREE version of DB2 express and take > > > control of your XML. No limits. Just data. Click to get it now. > > > http://sourceforge.net/powerbar/db2/ > > > _______________________________________________ > > > Roboticsprimer-users mailing list > > > Rob...@li... > > > > https://lists.sourceforge.net/lists/listinfo/roboticsprimer-users > > > > > > > > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by DB2 Express > > Download DB2 Express C - the FREE version of DB2 express and take > > control of your XML. No limits. Just data. Click to get it now. > > http://sourceforge.net/powerbar/db2/ > > _______________________________________________ > > Roboticsprimer-users mailing list > > Rob...@li... > > > https://lists.sourceforge.net/lists/listinfo/roboticsprimer-users > > > > > > -- > > Daniel Bedard > Senior Research Device Engineer > > Renaissance Computing Institute > at the University of North Carolina, Chapel Hill > 100 Europa Drive, Suite 540 > Chapel Hill, NC 27517-7583 > > da...@re... > phone: 919-445-9695 > fax: 919-445-9684 > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > Roboticsprimer-users mailing list > Rob...@li... > https://lists.sourceforge.net/lists/listinfo/roboticsprimer-users > > |
From: Robotics P. u. h. l. <rob...@li...> - 2007-07-05 21:11:24
|
On sconsing exercise 01: client has no member named stop I've commented it out for now, but I suspect it's bad if the client keeps going? Dan -- Daniel Bedard Senior Research Device Engineer Renaissance Computing Institute at the University of North Carolina, Chapel Hill 100 Europa Drive, Suite 540 Chapel Hill, NC 27517-7583 da...@re... phone: 919-445-9695 fax: 919-445-9684 |
From: Robotics P. u. h. l. <rob...@li...> - 2007-07-05 20:03:53
|
Okay, I feel like I'm getting close. I got a few errors: client/Client.cc:531: error: 'class PlayerCc::PowerProxy' has no member named 'GetWatts' ... 'GetJoules' etc. I'm just going to put in zeros and see if I can compile. Dan On 7/5/07, Robotics Primer users help list < rob...@li...> wrote: > > Ahh, yes, we need to work on the documentation and name schemes. > > In the workbook source, there should be a directory called player. Run > "scons install" in this directory. > > The code in "player" is used to create a nice interface to the real > Player code. This code enables the exercises to focus only on Gumstix > stuff, and not on the Player stuff. > > -nate > > > > On 7/5/07, Robotics Primer users help list > <rob...@li...> wrote: > > I trying to scons the first exercise, but I keep running into: > > > > Package roombaDev was not found in the pkg-config search path > > > > Can you give me any hints on finding / installing this package? Should > > player have built this? > > > > Dan > > > > -- > > Daniel Bedard > > Senior Research Device Engineer > > > > Renaissance Computing Institute > > at the University of North Carolina, Chapel Hill > > 100 Europa Drive, Suite 540 > > Chapel Hill, NC 27517-7583 > > > > da...@re... > > phone: 919-445-9695 > > fax: 919-445-9684 > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by DB2 Express > > Download DB2 Express C - the FREE version of DB2 express and take > > control of your XML. No limits. Just data. Click to get it now. > > http://sourceforge.net/powerbar/db2/ > > _______________________________________________ > > Roboticsprimer-users mailing list > > Rob...@li... > > https://lists.sourceforge.net/lists/listinfo/roboticsprimer-users > > > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > Roboticsprimer-users mailing list > Rob...@li... > https://lists.sourceforge.net/lists/listinfo/roboticsprimer-users > -- Daniel Bedard Senior Research Device Engineer Renaissance Computing Institute at the University of North Carolina, Chapel Hill 100 Europa Drive, Suite 540 Chapel Hill, NC 27517-7583 da...@re... phone: 919-445-9695 fax: 919-445-9684 |
From: Robotics P. u. h. l. <rob...@li...> - 2007-07-05 19:32:16
|
Ahh, yes, we need to work on the documentation and name schemes. In the workbook source, there should be a directory called player. Run "scons install" in this directory. The code in "player" is used to create a nice interface to the real Player code. This code enables the exercises to focus only on Gumstix stuff, and not on the Player stuff. -nate On 7/5/07, Robotics Primer users help list <rob...@li...> wrote: > I trying to scons the first exercise, but I keep running into: > > Package roombaDev was not found in the pkg-config search path > > Can you give me any hints on finding / installing this package? Should > player have built this? > > Dan > > -- > Daniel Bedard > Senior Research Device Engineer > > Renaissance Computing Institute > at the University of North Carolina, Chapel Hill > 100 Europa Drive, Suite 540 > Chapel Hill, NC 27517-7583 > > da...@re... > phone: 919-445-9695 > fax: 919-445-9684 > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > Roboticsprimer-users mailing list > Rob...@li... > https://lists.sourceforge.net/lists/listinfo/roboticsprimer-users > > |
From: Robotics P. u. h. l. <rob...@li...> - 2007-07-05 18:51:51
|
I trying to scons the first exercise, but I keep running into: Package roombaDev was not found in the pkg-config search path Can you give me any hints on finding / installing this package? Should player have built this? Dan -- Daniel Bedard Senior Research Device Engineer Renaissance Computing Institute at the University of North Carolina, Chapel Hill 100 Europa Drive, Suite 540 Chapel Hill, NC 27517-7583 da...@re... phone: 919-445-9695 fax: 919-445-9684 |
From: Robotics P. u. h. l. <rob...@li...> - 2007-07-05 18:28:32
|
Hello, The player config is as follows: driver ( name "create" provides ["position2d:0"] port "/dev/ttyS2" alwayson 1 ) -nate On 7/5/07, Robotics Primer users help list <rob...@li...> wrote: > Hello, > > So, okay, I got player built and installed. Is there a .cfg file for player > that you're using for the initial exercises? > > (My apologies if I missed it.) > > Dan > > -- > Daniel Bedard > Senior Research Device Engineer > > Renaissance Computing Institute > at the University of North Carolina, Chapel Hill > 100 Europa Drive, Suite 540 > Chapel Hill, NC 27517-7583 > > da...@re... > phone: 919-445-9695 > fax: 919-445-9684 > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > Roboticsprimer-users mailing list > Rob...@li... > https://lists.sourceforge.net/lists/listinfo/roboticsprimer-users > > |
From: Robotics P. u. h. l. <rob...@li...> - 2007-07-05 14:49:27
|
Which exercise(s), specifically? -Dave On 7/5/07, Robotics Primer users help list <rob...@li...> wrote: > Hello, > > So, okay, I got player built and installed. Is there a .cfg file for player > that you're using for the initial exercises? > > (My apologies if I missed it.) > > Dan > > -- > Daniel Bedard > Senior Research Device Engineer > > Renaissance Computing Institute > at the University of North Carolina, Chapel Hill > 100 Europa Drive, Suite 540 > Chapel Hill, NC 27517-7583 > > da...@re... > phone: 919-445-9695 > fax: 919-445-9684 > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > > _______________________________________________ > Roboticsprimer-users mailing list > Rob...@li... > https://lists.sourceforge.net/lists/listinfo/roboticsprimer-users > > |
From: Robotics P. u. h. l. <rob...@li...> - 2007-07-05 13:46:27
|
Hello, So, okay, I got player built and installed. Is there a .cfg file for player that you're using for the initial exercises? (My apologies if I missed it.) Dan -- Daniel Bedard Senior Research Device Engineer Renaissance Computing Institute at the University of North Carolina, Chapel Hill 100 Europa Drive, Suite 540 Chapel Hill, NC 27517-7583 da...@re... phone: 919-445-9695 fax: 919-445-9684 |
From: Robotics P. u. h. l. <rob...@li...> - 2007-07-03 19:06:05
|
Hi, Here is a tutorial: http://playerstage.sourceforge.net/doc/Player-2.0.0/player/group__tutorial__crosscompiling.html Let me know if you have any problems. -nate On 7/3/07, Robotics Primer users help list <rob...@li...> wrote: > Hello, > > Does anyone have explicit instruction re how to set up Player on the > Gumstix? > > Thanks! > Dan Bedard > > -- > Daniel Bedard > Senior Research Device Engineer > > Renaissance Computing Institute > at the University of North Carolina, Chapel Hill > 100 Europa Drive, Suite 540 > Chapel Hill, NC 27517-7583 > > da...@re... > phone: 919-445-9695 > fax: 919-445-9684 > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > Roboticsprimer-users mailing list > Rob...@li... > https://lists.sourceforge.net/lists/listinfo/roboticsprimer-users > > |
From: Robotics P. u. h. l. <rob...@li...> - 2007-07-03 18:22:33
|
Hello, Does anyone have explicit instruction re how to set up Player on the Gumstix? Thanks! Dan Bedard -- Daniel Bedard Senior Research Device Engineer Renaissance Computing Institute at the University of North Carolina, Chapel Hill 100 Europa Drive, Suite 540 Chapel Hill, NC 27517-7583 da...@re... phone: 919-445-9695 fax: 919-445-9684 |
From: Robotics P. u. h. l. <rob...@li...> - 2007-02-02 14:56:30
|
This is another test of the roboticsprimer mailing list. -nate |
From: Robotics P. u. h. l. <rob...@li...> - 2007-02-02 14:50:32
|
This is a test message for the roboticsprimer-users mailing list. -nate |