Dynamic Controls Power chair, RC Boat trailer project

Power wheelchair board for REAL info!

POWERCHAIR MENU! www.wheelchairdriver.com/powerchair-stuff.htm

Re: Dynamic Controls Power chair, RC Boat trailer project

Postby LROBBINS » 22 Dec 2016, 13:38

Consider moving the CG back to take weight off the casters and put it on the drive wheels - perhaps by moving the motors forward. Lightly-loaded casters turn much more easily.
LROBBINS
 
Posts: 5771
Joined: 27 Aug 2010, 09:36
Location: Siena, Italy

Re: Dynamic Controls Power chair, RC Boat trailer project

Postby gcebiker » 22 Dec 2016, 13:53

The chair has tilt and recline, i have moved myself back as far as i dare and its not helped, pretty sure its a setting that is set to tame.

Chair is in amazing condition, it only cost me $400. I am feeling very fortunate it goes as well as it does with out tinkering much.
http://greenmobility.com.au/rc-wheelchair-controller/
My YouTube Ch -- https://www.youtube.com/user/gcebiker
User avatar
gcebiker
 
Posts: 879
Joined: 11 Jul 2015, 14:20
Location: Gold Coast, Queensland, Australia.

Re: Dynamic Controls Power chair, RC Boat trailer project

Postby LROBBINS » 22 Dec 2016, 22:25

Have you tuned the motor compensation? If too low, it will have trouble with "high load" situations, including turn-in-place. Careful though, too high and the chair can become unmanageable, even to the point of runaway behavior.
LROBBINS
 
Posts: 5771
Joined: 27 Aug 2010, 09:36
Location: Siena, Italy

Re: Dynamic Controls Power chair, RC Boat trailer project

Postby ex-Gooserider » 27 Dec 2016, 03:04

I wouldn't go back to lead brick power - instead keep the lithium pack and add some ballast to get the weight back up - probably the ideal would be lead sheet cut to size, but steel plate would work....

Re the registration issue - if they can't tell you what law requires it to be registered (have a rule to point at that says how) then obviously it doesn't need to be, as it isn't required - though it might require arguing with the cop about this point....

Many years back I tried being a motorcycle courier - I was told that to legally park in the 'commercial vehicles only' spaces, I needed to have signs on the vehicle that met a certain minimum size and content spec (which wouldn't fit) and have 'commercial' plates on the bike instead of the regular 'private vehicle' plates.... I found that the registry didn't have any option for 'commercial plates' on a motorcycle... So I put the biggest signs on the tour box that I could fit, and ran with my normal plates.... Only got one parking ticket, and won the appeal based on the fact that I couldn't be penalized for failing to comply with a requirement that was impossible to meet....

ex-Gooserider
T-5, ASIA-B
Jazzy 1100
Jazzy Select 6
Quickie Q-7
Invacare Mariner
Want to make / get a better chair, ideally one that stands.
User avatar
ex-Gooserider
 
Posts: 6185
Joined: 15 Feb 2011, 06:17
Location: Billerica, MA. USA

Re: Dynamic Controls Power chair, RC Boat trailer project

Postby gcebiker » 27 Dec 2016, 03:29

...yeah but the lead bricks are easier....AND FREE :)
I can use the extra range from the LiFePo4 to run the trolling motor in the boat.

I have seen some solar powered small boats and running on electric would save me the trouble of driving on my scooter to pick up fuel all of the time.

...i just wish the brushless trolling motors did not require you to sell a kidney, dam they are expensive.

Boat trailer registration is also necessary if i want to insure it, insurance companies being what they are i dont wish to give them room to wiggle out of anything.

Its more flexible now that i can now tow it with the car or the Joystick wheelchair (when i sort out the settings / balance)

Image

Working on the code for the GPS spot lock trolling motor now..my $100 version of the Minn Kota 'Ulterra'
http://greenmobility.com.au/rc-wheelchair-controller/
My YouTube Ch -- https://www.youtube.com/user/gcebiker
User avatar
gcebiker
 
Posts: 879
Joined: 11 Jul 2015, 14:20
Location: Gold Coast, Queensland, Australia.

Re: Dynamic Controls Power chair, RC Boat trailer project

Postby gcebiker » 27 Dec 2016, 15:38

I have the GPS working but the steering is getting me a bit ...pardon the pun, turned about...

I want to prevent wire wrap on the shaft , using the 'standard' gps angle works but does nothing to address wire wrapping...because people , cars, boats dont generally have to worry about that kind of thing i guess.

Is this the cleanest way to do it or am i over complicating things again ?
Code: Select all
 float targetCourse = gps.gprmc_course_to(storedLat, storedLong);
float currentCourse = "input from compass chip"

  if (targetCourse > 180)
  {
    if (currentCourse >  targetCourse) { // current is between 360 & target but target > 180
      turn counterClockWise();
    }
    else if (currentCourse < targetCourse) && (currentCourse < targetCourse - 180) { //current is 0-180 target >180
      turn counterClockWise();
    }
    else if (currentCourse < targetCourse) && (currentCourse > 180) { // current is > 180 but < target
      turn clockWise();
    }
  }

  if (targetCourse < 180) {
    if (currentCourse < targetCourse) { //current 0-target
      turn clockWise();
    }
    else if (currentCourse > targetCourse + 180) { // current > target +180
      turn clockWise();
    }
    else if (currentCourse > targetCourse) { // current > target but less than 180
      turn counterClockWise();
    }


clockWise() and counterClockWise() are separate subroutines (for people new to this stuff, known as 'functions' in Arduino speak)

This is the original code
Code: Select all
steer = gps.gprmc_course_to(storedLat, storedLong) - (heading Degrees)

 if (steer < 0) { steer += 360;}
           if (d > 180) { steer -= 360; }
 if (steer <= -20 &&  steer >= -180)
    {
      digitalWrite(left, LOW);
      digitalWrite(right, HIGH);
    }
    else if (steer >= 20 && steer <= 180)
    {
      digitalWrite(left, HIGH);
      digitalWrite(right, LOW);
    }
    else
    {
      digitalWrite(left, HIGH);
      digitalWrite(right, HIGH);
    }





...which works fine as long as the trolling motor is close to facing the target location.
the "left" and "right" above, are the name holders for the digital pins going to the relay shield.

Ive seen a few examples but they all seem to do the same thing, which is to assume you are facing the way you want to go when engaging auto helm
...but what if you are facing the opposite way ?
Would it be simpler / more robust to just calculate the degrees required to turn Left or Right and take the shorter path ?
which is what the first line of the original code starts off doing, i think..
Code: Select all
steer = gps.gprmc_course_to(storedLat, storedLong) - (heading Degrees)


or do i use a 540degree model ?

...i should be in bed, its past midnight here and i need to go register the trailer tomorrow, maybe in the morning i will wake up with an AhHA idea.
http://greenmobility.com.au/rc-wheelchair-controller/
My YouTube Ch -- https://www.youtube.com/user/gcebiker
User avatar
gcebiker
 
Posts: 879
Joined: 11 Jul 2015, 14:20
Location: Gold Coast, Queensland, Australia.

Re: Dynamic Controls Power chair, RC Boat trailer project

Postby Jeflemi1 » 27 Dec 2016, 16:21

I had a very similar problem thanks a lot for the helpful tips guys!! I was going to take it into the store but I might just try this project out on my own and save some money :)
Jeflemi1
 
Posts: 2
Joined: 27 Dec 2016, 16:16

Re: Dynamic Controls Power chair, RC Boat trailer project

Postby gcebiker » 28 Dec 2016, 06:12

Cleared up the syntax errors and turns out i get the same result with either bit of code.

Trolling motor will end up with a single turn about the shaft over time, same as i see on the commercial versions.
http://greenmobility.com.au/rc-wheelchair-controller/
My YouTube Ch -- https://www.youtube.com/user/gcebiker
User avatar
gcebiker
 
Posts: 879
Joined: 11 Jul 2015, 14:20
Location: Gold Coast, Queensland, Australia.

Re: Dynamic Controls Power chair, RC Boat trailer project

Postby woodygb » 28 Dec 2016, 23:51

I'm sort of lost as I cannot visualize your steering setup and thus understand the reference to wire wrap around the shaft.

Have you any links to a similar working setup?

EDIT.
Had a look at some GPS Trolling motor pics ...

Question ...Does the motor rotate 360 degrees to get reverse?
An expert is a person who has made all the mistakes that can be made in a very narrow field.
Niels Bohr
User avatar
woodygb
 
Posts: 7128
Joined: 12 Mar 2011, 18:45
Location: Bedford UK

Re: Dynamic Controls Power chair, RC Boat trailer project

Postby gcebiker » 29 Dec 2016, 00:33

woodygb wrote:Question ...Does the motor rotate 360 degrees to get reverse?


Yes, but the trolling motor (diy gps spot lock) is only designed to drive to some GPS mark.

As it approaches the GPS mark the motor will slow down / speed up as it works against the wind and tide.
I think its called a 'controlled drift' if following a contour with the tide but i don't have all that tricky stuff to integrate with a Chart Plotter.

Ive a Yamaha F6CMHS that is currently Tiller steer, fortunately a company in the Netherlands makes a forward control kit for this motor, ill be able to sit naturally and just steer like a car.
http://greenmobility.com.au/rc-wheelchair-controller/
My YouTube Ch -- https://www.youtube.com/user/gcebiker
User avatar
gcebiker
 
Posts: 879
Joined: 11 Jul 2015, 14:20
Location: Gold Coast, Queensland, Australia.

Re: Dynamic Controls Power chair, RC Boat trailer project

Postby gcebiker » 15 Jan 2017, 01:53

These Solid PU tyres did not work out, not strong enough for the weight...its a lot lighter than it looks.

Chair was able to tow well with me in it on flat ground, at the very least it will be usefull for putting the boat away if i do end up using the car to tow it.

Image
http://greenmobility.com.au/rc-wheelchair-controller/
My YouTube Ch -- https://www.youtube.com/user/gcebiker
User avatar
gcebiker
 
Posts: 879
Joined: 11 Jul 2015, 14:20
Location: Gold Coast, Queensland, Australia.

Re: Dynamic Controls Power chair, RC Boat trailer project

Postby gcebiker » 15 Jan 2017, 01:55

Esky/live well pods made for the back, need to clean off the weld splatter and paint.

Image

9.9HP Long Shaft Tohatsu has been replaced with a 6HP Yamaha, fitting forward controls to it later in the week and the charging kit.
http://greenmobility.com.au/rc-wheelchair-controller/
My YouTube Ch -- https://www.youtube.com/user/gcebiker
User avatar
gcebiker
 
Posts: 879
Joined: 11 Jul 2015, 14:20
Location: Gold Coast, Queensland, Australia.

Re: Dynamic Controls Power chair, RC Boat trailer project

Postby ex-Gooserider » 17 Jan 2017, 05:52

Possible solution to the motor wrapping the wire around itself...

For this part, it doesn't matter what direction the boat is headed in, all you care about is the position of the motor with respect to the mounting brackets or some other fixed point on the boat....

Presumably there must be some sort of input to tell the computer which way it is pointed with respect to the mounting brackets, and a way to get a value of 0-360 out of it, or even better plus and minus 360.... Assuming the position number goes positive turning clockwise as looking down on it from above, and that straight ahead is zero, store a value for which direction the motor is turning. (0=clockwise, 1=counter-clockwise) and have some maximum value (say 300*) that is the most you want the motor to be able to wrap the lead around.... Twice the value should be more than 360, and be in a range that you don't typically run with the motor pointed at...

Allow the program to turn the motor as needed in either direction to +/- 300* but if it wants the motor to turn more than the value, require it to spin in the OPPOSITE direction and approach it from the other side...

As each turn command comes in, add or subtract it from the present position to get a new position, and / or read the position sensor to track the current value...

I.e - motor turns back and forth starting clockwise from zero to any position less than 300*, not a problem. Then command comes in that would tell motor to exceed 300* - say go to 320*.... The shortest rotation would be to continue clockwise, but instead require the motor to spin COUNTER-Clockwise to approach it from the opposite side....

Even if working back and forth near the limit value in one direction, there wouldn't really be a problem as the first time over the limit would make the motor spin back the other direction, and then the working would be in a range that wouldn't hit the limit....

Since I'd expect that most of the action would be with the motor pointing either mostly forward or mostly backwards, picking values that would trip when the motor was pointing sideways seems best....

Hope this makes sense....

ex-Gooserider
T-5, ASIA-B
Jazzy 1100
Jazzy Select 6
Quickie Q-7
Invacare Mariner
Want to make / get a better chair, ideally one that stands.
User avatar
ex-Gooserider
 
Posts: 6185
Joined: 15 Feb 2011, 06:17
Location: Billerica, MA. USA

Re: Dynamic Controls Power chair, RC Boat trailer project

Postby gcebiker » 17 Jan 2017, 12:56

Yeah it has the data feed from the GPS/ NMEA GPRMC sentences and a digital compass.
Apparently i will also need an accelerometer as the swell is going to mess up the compass headings a bit.

This is the code that is working , like you say...most of the time i am going to be pointing right at where i want to go / stay so it should never be an issue or at least not a big issue. I know the DigitalWrite High/Low look back to front...this relay shield works back to front.

Code: Select all
void steering() {

  // calculate relative direction to destination

  int steer = gps.gprmc_course_to(storedLat, storedLong) - (currentCourse) ;

   // check if negative number, turn into positive.
 if (steer < 0) {
          steer += 360;
        }
        if (steer > 180) {
          steer -= 360;
        }



 Serial.print("CTD used for relay control -  ");
  Serial.print(steer);
  Serial.println();
 
  //Turn left
  if (steer <= -20 &&  steer >= -180)
  {
    digitalWrite(left, LOW);
    digitalWrite(right, HIGH);
  }
  else if (steer >= 20 && steer <= 180)
  {
    digitalWrite(left, HIGH);
    digitalWrite(right, LOW);
  }
  else
  {
    digitalWrite(left, HIGH);
    digitalWrite(right, HIGH);
  }
}


The big thing i had completely forgotten was that the motor is up at the moment...the cord with not much extra for getting wrapped around.
...once the Motor is DOWN...i will have heaps of wire and its all springy wire too.

All proceeding well, it should be in the water next week....car launch, its squid season and unfortunately, I don't have the time at the moment to mess about with the Electric wheelchair/launch and retrieve.

...i am a day behind at the moment, shop ran out of Locktite ! for the Remote control plate i put on the F6C Yamaha 4 stroke.
http://greenmobility.com.au/rc-wheelchair-controller/
My YouTube Ch -- https://www.youtube.com/user/gcebiker
User avatar
gcebiker
 
Posts: 879
Joined: 11 Jul 2015, 14:20
Location: Gold Coast, Queensland, Australia.

Re: Dynamic Controls Power chair, RC Boat trailer project

Postby Burgerman » 21 Jan 2017, 19:24

You need a 4x scaled up one of these. http://www.wheelchairdriver.com/gopro/test-control.mp4 With current sensors and correctly working motor compensation it drives exactly the same with a 12lb breeze block on top. It just sucks up extra amps. 3mm of stick, it turns.
User avatar
Burgerman
Site Admin
 
Posts: 69775
Joined: 27 May 2008, 21:24
Location: United Kingdom

Re: Dynamic Controls Power chair, RC Boat trailer project

Postby gcebiker » 31 Jan 2017, 13:28

LROBBINS wrote:Have you tuned the motor compensation? If too low, it will have trouble with "high load" situations, including turn-in-place. Careful though, too high and the chair can become unmanageable, even to the point of runaway behavior.


It was set to 108ohms...or was the mOhms, i forget. Anyway, i lowered it to 55 and tinkered with the other settings.

Improved the driving a lot...until i attached the boat.
The chair is limited to 55amps and thats where i think the problem lies, the limitation with the motors.

If i get out of the chair and use it for balance, i can slowly get it back up the driveway (which is a slight incline).
It would go faster but walking and driving the chair is difficult.

----
Ended up taking the boat out for its first run on Monday with the help of a friend.
He drove the boat to near where the car was parked and i was able to get from the car to the waters edge, its not something i think would be possible as an ongoing solution.

It had some slight hickups
- The DrawBar bent when the winch jammed and the boat slid off the trailer.
Easy to fix.
- The tow ball did not quite fit.
Already fixed.
...and i had to many people on board, thought it would be ok with 3...and it kind of was but at one point we were all on the one side and it got a bit hairy for a few seconds.

Other than that , very very happy.

Looking for ways (that i can afford) to fix the lack of power in the wheelchair.
I purchased it broken and its all fixed up now so its possible i could sell it back to the store and get a different one, first researching the limits of the motors installed in the donor chair.

They had another one there that looked to have beefier motors and it came with a Dynamic Controller, Ill be calling the store in the morning to see if they still have it.

Ill also bump UP the resistance , trouble is the setting is global...so it will probably make the chair very difficult to drive when the boat is not on the trailer.

More testing is needed !

Tony
http://greenmobility.com.au/rc-wheelchair-controller/
My YouTube Ch -- https://www.youtube.com/user/gcebiker
User avatar
gcebiker
 
Posts: 879
Joined: 11 Jul 2015, 14:20
Location: Gold Coast, Queensland, Australia.

Re: Dynamic Controls Power chair, RC Boat trailer project

Postby Burgerman » 31 Jan 2017, 15:28

It makes it easier to drive. The load compensation when set correctly, automatically compensates for load. So the chair will respond the same, either loaded or not, slope or not, grass or tarmac, hill or no hill.

When its not set high enough you must add more power to overcome a load or weight yourself, and then it runs away after you do it. Or it refuses to turn. When set even fractionally too high it over compensates and can run away.
User avatar
Burgerman
Site Admin
 
Posts: 69775
Joined: 27 May 2008, 21:24
Location: United Kingdom

Re: Dynamic Controls Power chair, RC Boat trailer project

Postby gcebiker » 01 Feb 2017, 09:23

Burgerman wrote:It makes it easier to drive. The load compensation when set correctly, automatically compensates for load. So the chair will respond the same, either loaded or not, slope or not, grass or tarmac, hill or no hill.

When its not set high enough you must add more power to overcome a load or weight yourself, and then it runs away after you do it. Or it refuses to turn. When set even fractionally too high it over compensates and can run away.


Ah, i see. Now it makes sense, i will raise the value and see if it helps with the boat...it probably is under powered tho @ only 55amps.
http://greenmobility.com.au/rc-wheelchair-controller/
My YouTube Ch -- https://www.youtube.com/user/gcebiker
User avatar
gcebiker
 
Posts: 879
Joined: 11 Jul 2015, 14:20
Location: Gold Coast, Queensland, Australia.

Re: Dynamic Controls Power chair, RC Boat trailer project

Postby Burgerman » 02 Feb 2017, 00:55

You need to increase a little at a time, and test. At the point where it gets too jumpy, you either have turn rate or forward acceleration set too high. Or compensation set too high. In an ideal setup, with a heavily loaded chair, you will get full Amps that the controller can deliver at around 15% turn on the joystick. So turn rate doesn't need to be set high. 40 is a good max value, and 15 for low speed turn.
User avatar
Burgerman
Site Admin
 
Posts: 69775
Joined: 27 May 2008, 21:24
Location: United Kingdom

Re: Dynamic Controls Power chair, RC Boat trailer project

Postby gcebiker » 10 Feb 2017, 12:05

Made the changes to the resistance and its heaps better but still ME + Boat....not working out.

The Chair is to light and its not looking safe (because when i get off the chair lifts off the ground), so for now the wheelchair has become an awesome tool for moving it.
Our street is quite narrow with all the cars parked and its difficult to boat drive out and reverse in.

I park on the street and use the wheelchair to tow the boat down the driveway, along the footpath and then attach to the car.

Here is a video i took today while out squidding. https://www.youtube.com/watch?v=sNlmWI_ ... e=youtu.be
http://greenmobility.com.au/rc-wheelchair-controller/
My YouTube Ch -- https://www.youtube.com/user/gcebiker
User avatar
gcebiker
 
Posts: 879
Joined: 11 Jul 2015, 14:20
Location: Gold Coast, Queensland, Australia.

Re: Dynamic Controls Power chair, RC Boat trailer project

Postby woodygb » 10 Feb 2017, 12:23

because when i get off the chair lifts off the ground
... This may seem like a daft question but ...
Why does the chair lift up? .... I always thought that you set the nose weight of the trailer hitch at 10-15 percent of the trailer weight... thus it should be pressing down on the ball hitch attached to the rear of the chair.

OR ...Do you mean that the casters are lifted off the ground without your weight on the chair?
An expert is a person who has made all the mistakes that can be made in a very narrow field.
Niels Bohr
User avatar
woodygb
 
Posts: 7128
Joined: 12 Mar 2011, 18:45
Location: Bedford UK

Re: Dynamic Controls Power chair, RC Boat trailer project

Postby Burgerman » 10 Feb 2017, 12:28

I suspect he means the tow hitch is too high. Needs to be about level with the chairs axle it the front will lift as it pulls the boat.
User avatar
Burgerman
Site Admin
 
Posts: 69775
Joined: 27 May 2008, 21:24
Location: United Kingdom

Re: Dynamic Controls Power chair, RC Boat trailer project

Postby gcebiker » 11 Feb 2017, 00:19

Ill try again, not sure if that link was right - Video of the boat on a little island in the broadwater on the Gold Coast of Queensland, Australia.
https://www.youtube.com/watch?v=sNlmWI_rXhU&feature=youtu.behttps%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DsNlmWI_

The ramp is quite steep, the wheelchair is doing wheelies when i try to drive forward (even with the light alloy trailer and no boat).

Perhaps the easiest thing to do would be to make the Roller M1 into a 'Front wheel drive' , in stead of its current Rear Wheel drive configuration.
It would mean making a new tow hitch but i am also thinking i dont have enough power with the current module/motor combo.

I have someone local that is thinking of donating their old Jazzy600 to me, they have not used it in over two years.

I have done testing in the driveway and the 6 wheel drive Q6Edge i am sitting in handles the load of the combine boat/trailer much easier than the Roller M1.
...the Q6 Edge i have has the drive electronics from my old Jazzy600 in it, so i am comparing like with like hopefully, tho on different platforms.

Regardless, i dont want to be sitting in the chair as i try to drive up the boat ramp, it has to be stable with out me in it..
6 Wheels should help a lot and i will be able to remove the seat and put the Tow Ball over the center of the axles.
http://greenmobility.com.au/rc-wheelchair-controller/
My YouTube Ch -- https://www.youtube.com/user/gcebiker
User avatar
gcebiker
 
Posts: 879
Joined: 11 Jul 2015, 14:20
Location: Gold Coast, Queensland, Australia.

Re: Dynamic Controls Power chair, RC Boat trailer project

Postby gcebiker » 12 Feb 2017, 02:56

woodygb wrote:
because when i get off the chair lifts off the ground
... This may seem like a daft question but ...
Why does the chair lift up? .... I always thought that you set the nose weight of the trailer hitch at 10-15 percent of the trailer weight... thus it should be pressing down on the ball hitch attached to the rear of the chair.

OR ...Do you mean that the casters are lifted off the ground without your weight on the chair?


When i try to drive forward , while on the boat ramp , it wheelstands.
I probably need to turn the chair around.

Last nights effort from the footpath to where i can cast into the water.
Image
http://greenmobility.com.au/rc-wheelchair-controller/
My YouTube Ch -- https://www.youtube.com/user/gcebiker
User avatar
gcebiker
 
Posts: 879
Joined: 11 Jul 2015, 14:20
Location: Gold Coast, Queensland, Australia.

Re: Dynamic Controls Power chair, RC Boat trailer project

Postby gcebiker » 14 Feb 2017, 12:31

Put new mid wheel and front caster wheels on the Q6 Edge today, after running around on flat topped PU for over a year....its turning a lot easier.

Completely unexpected and something i had not thought of for the M1 Prowler.
First up i am going to try increasing the tyre pressure, and then i will take off the air castors and put on the old PU castors i took off the Q6Edge today.

Its proving its worth just as a tow vehicle in the front yard.

As soon as i find a place to mount the trolling motor i will be able to test out the code (for the GPS spot lock) in the real world and start tweaking it.
http://greenmobility.com.au/rc-wheelchair-controller/
My YouTube Ch -- https://www.youtube.com/user/gcebiker
User avatar
gcebiker
 
Posts: 879
Joined: 11 Jul 2015, 14:20
Location: Gold Coast, Queensland, Australia.

Re: Dynamic Controls Power chair, RC Boat trailer project

Postby Burgerman » 14 Feb 2017, 12:47

If doing that helped it means you dont have enough load compensation.
User avatar
Burgerman
Site Admin
 
Posts: 69775
Joined: 27 May 2008, 21:24
Location: United Kingdom

Re: Dynamic Controls Power chair, RC Boat trailer project

Postby Burgerman » 14 Feb 2017, 22:26

DYNAMIC CONTROLS:

Load Compensation automatically compensates for changes in motor speed when the chair drives over loads such as sidewalks, curbs or slopes.

Note: The Load Compensation and Speed Demand Scalar parameters affect the performance of all other speed and acceleration parameters and as such it is important to set these parameters correctly before programming anything else. If these parameters are changed after the chair has been set up, the complete speed/acceleration programming and testing procedure must be repeated.

If Load Compensation is set too low, the chair
- Drives like it is going through thick mud
- Slows down when it goes up a sidewalk edge or up a ramp
- Slows down with heavier users
- Changes direction when it drives over a bump
- Changes direction when the weight of the user shifts.

If Load Compensation is set correctly, the chair
- Drives smoothly
- Keeps the speed reasonably constant. Only slightly slows down on a slope or on thick carpet.
- Keeps the direction constant. Only slightly changes direction when it drives over a bump.

If Load Compensation is set too high, the chair
- Drives very rough
- Is hard to steer or control, vibrates or surges
- Swerves when it drives over a bump
- Motor becomes hotter than normal very easily, decreased motor life

Set Load Compensation to the correct motor resistance value of the used motor. To determine the correct load compensation:

DX2 - Use the Wizard Load Compensation plug-in (Tools -> Plug Ins -> DX2 Power Module Load Compensation).
DX - See the Load Compensation description in the DX System Manual for 3 step-by-step procedures to determine the correct motor resistance.

Note:
Set this parameter to twice the actual value for a PM-S single channel module (used on servo steer wheelchairs).

To test if Load Compensation has the correct value, perform a series of wheelchair tests (drive on a slope, over a bump, up a sidewalk edge, and over thick carpet) and check if the chair behaviour is similar to the correct behaviour described above.
User avatar
Burgerman
Site Admin
 
Posts: 69775
Joined: 27 May 2008, 21:24
Location: United Kingdom

Re: Dynamic Controls Power chair, RC Boat trailer project

Postby gcebiker » 15 Mar 2017, 04:00

So glad i have been posting the working code as i iron it out.

Long intervals between coding sessions has me forgetting which is the current build file.

- Hopefully i will be able to make a video in the near future with the Q6Edge chair - with Dynamic Shark Controller being driven via Remote Control (via the RS485 data bus)

Ive also applied for funding for a Jazzy 623
Mid wheel drive with Dynamic Controls, solid tires. It should easily pull the trailer around the house for me.
http://greenmobility.com.au/rc-wheelchair-controller/
My YouTube Ch -- https://www.youtube.com/user/gcebiker
User avatar
gcebiker
 
Posts: 879
Joined: 11 Jul 2015, 14:20
Location: Gold Coast, Queensland, Australia.

Re: Dynamic Controls Power chair, RC Boat trailer project

Postby gcebiker » 15 Mar 2017, 07:32

Ive converted the code over to Remote Control.

Benefits of longer range and a fail safe, its also able to use off the shelf RC units and not tied to one brand.

This is a copy of the working code,
Dynamic Shark power wheelchair Remote - Arduino Emulator, with 2.4ghz Remote Control , large dead band and fail safe.
Attachments
SR_RC_deadband_and_pulseIn_working.zip
(4.83 KiB) Downloaded 363 times
http://greenmobility.com.au/rc-wheelchair-controller/
My YouTube Ch -- https://www.youtube.com/user/gcebiker
User avatar
gcebiker
 
Posts: 879
Joined: 11 Jul 2015, 14:20
Location: Gold Coast, Queensland, Australia.

Re: Dynamic Controls Power chair, RC Boat trailer project

Postby gcebiker » 15 Mar 2017, 09:28

About a month ago, I did a bit of work for a guy on two of his chairs , with payment to be an 8 year Jazzy 600....
After the work was done, he changed his mind and said he would keep it, i was disappointed he had changed his mind....the Jazzys not even going, one motor is apparently blown and the batteries are long dead but what can you do right ?

This afternoon i get a text from him asking me how much i would like to PAY for it...with no offer to pay for the work i did on his 2 power chairs...grrr

Anyway, while that texting was going on. I did a short video of the new RC emulator driving about in my driveway.
When it finishes uploading this is the link to it, https://www.youtube.com/watch?v=6x7QHqm ... e=youtu.be

If anyone has any questions could they please post here so that the community may benefit (rather than the PM's please)

If anyone has the experience with making circuit boards could you please get in contact with me.

I would really appreciate someone drawing up the boards ready to go to a board house. I have run out of the stimulant that i have been using for 8 years (it was a banned supplement years ago but i stocked up) and working new information into my tiny head is increasingly difficult.

In return i would gladly purchase the boards and build/test one and post to you for your own use.

Cheers
Tony
http://greenmobility.com.au/rc-wheelchair-controller/
My YouTube Ch -- https://www.youtube.com/user/gcebiker
User avatar
gcebiker
 
Posts: 879
Joined: 11 Jul 2015, 14:20
Location: Gold Coast, Queensland, Australia.

PreviousNext

Return to Everything Powerchair

Who is online

Users browsing this forum: acid_coke, Bing [Bot], emilevirus, Potty and 155 guests

 

  eXTReMe Tracker