Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(3) |
Jul
(4) |
Aug
(10) |
Sep
(9) |
Oct
|
Nov
(22) |
Dec
(7) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(5) |
Feb
(9) |
Mar
(10) |
Apr
(22) |
May
(35) |
Jun
(72) |
Jul
(21) |
Aug
(14) |
Sep
(23) |
Oct
(60) |
Nov
(82) |
Dec
(19) |
2005 |
Jan
(42) |
Feb
(59) |
Mar
(94) |
Apr
(57) |
May
(48) |
Jun
(22) |
Jul
(8) |
Aug
(12) |
Sep
(16) |
Oct
(8) |
Nov
(38) |
Dec
(31) |
2006 |
Jan
(37) |
Feb
(18) |
Mar
(139) |
Apr
(113) |
May
(52) |
Jun
(50) |
Jul
(90) |
Aug
(58) |
Sep
(33) |
Oct
(35) |
Nov
(30) |
Dec
(20) |
2007 |
Jan
(26) |
Feb
(47) |
Mar
(102) |
Apr
(64) |
May
(68) |
Jun
(36) |
Jul
(67) |
Aug
(41) |
Sep
(39) |
Oct
(97) |
Nov
(74) |
Dec
(146) |
2008 |
Jan
(156) |
Feb
(66) |
Mar
(73) |
Apr
(48) |
May
(91) |
Jun
(79) |
Jul
(106) |
Aug
(55) |
Sep
(31) |
Oct
(55) |
Nov
(33) |
Dec
(33) |
2009 |
Jan
(42) |
Feb
(22) |
Mar
(36) |
Apr
(22) |
May
(26) |
Jun
(36) |
Jul
(5) |
Aug
(3) |
Sep
(29) |
Oct
(23) |
Nov
(24) |
Dec
(12) |
2010 |
Jan
(89) |
Feb
(23) |
Mar
(12) |
Apr
(54) |
May
(12) |
Jun
(44) |
Jul
(19) |
Aug
(30) |
Sep
(10) |
Oct
(8) |
Nov
(8) |
Dec
(26) |
2011 |
Jan
(1) |
Feb
(8) |
Mar
(12) |
Apr
(6) |
May
(3) |
Jun
(34) |
Jul
(9) |
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
(5) |
2012 |
Jan
(3) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2014 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
1
(2) |
2
(1) |
3
|
4
|
5
|
6
|
7
|
8
|
9
(1) |
10
(10) |
11
(2) |
12
|
13
|
14
|
15
|
16
(3) |
17
(4) |
18
(1) |
19
(4) |
20
|
21
|
22
(2) |
23
(2) |
24
(1) |
25
|
26
|
27
|
28
|
29
|
30
|
31
|
|
|
|
From: Benjamin Kloster <benkloster@go...> - 2008-12-23 13:21:18
|
Hi, I can't verify right now (not at work), but I think you have to add a <providefeedback>true</providefeedback> tag somewhere inside your joint:slider tag. Let me know if you still have problems. If so, I will try and get an example from our server next time I'm at a PC with an ssh client. Good luck, Ben 2008/12/23 Bassam Jalgha <bfj00@...> > Hello, > I am using Gazebo SVN. > > I want to create a model of a unidirectional force sensor. I have seen > in a previous post that the best way to do it is to create a slider > joint and then get the force information from there. > In order to get the joint force information i have used the jointforce > controller and the opaque interface. > > here is that part of my world file: > > <joint:slider name="slider_sensor"> > <body1>base_body</body1> > <body2>sensor_body</body2> > <anchor>sensor_body</anchor> > > <axis>0 0 1</axis> > <lowStop>0</lowStop> > <highStop>0.07</highStop> > <erp>0.3</erp> > <cfm>0.8</cfm> > </joint:slider> > > > <controller:jointforce name="joint_force"> > <joint: name="slider_sensor"/> > <interface:opaque name="force_iface_0"/> > </controller:jointforce> > > Then in my libgazebo client code i am connecting successfully to > OpaqueIface but if i output OpIface->data->data_count i get a zero. > and i am getting blank data with OpIface->data->data[anything]. > > Please help me out and tell me where i am doing wrong. > let me know if there is anything similar to what i am doing already > available > > Thank you > Bassam Jalgha > > > > ------------------------------------------------------------------------------ > _______________________________________________ > Playerstage-gazebo mailing list > Playerstage-gazebo@... > https://lists.sourceforge.net/lists/listinfo/playerstage-gazebo > > |
From: Bassam Jalgha <bfj00@au...> - 2008-12-23 12:48:20
|
Hello, I am using Gazebo SVN. I want to create a model of a unidirectional force sensor. I have seen in a previous post that the best way to do it is to create a slider joint and then get the force information from there. In order to get the joint force information i have used the jointforce controller and the opaque interface. here is that part of my world file: <joint:slider name="slider_sensor"> <body1>base_body</body1> <body2>sensor_body</body2> <anchor>sensor_body</anchor> <axis>0 0 1</axis> <lowStop>0</lowStop> <highStop>0.07</highStop> <erp>0.3</erp> <cfm>0.8</cfm> </joint:slider> <controller:jointforce name="joint_force"> <joint: name="slider_sensor"/> <interface:opaque name="force_iface_0"/> </controller:jointforce> Then in my libgazebo client code i am connecting successfully to OpaqueIface but if i output OpIface->data->data_count i get a zero. and i am getting blank data with OpIface->data->data[anything]. Please help me out and tell me where i am doing wrong. let me know if there is anything similar to what i am doing already available Thank you Bassam Jalgha |