Search results

  1. Woosh

    Brexit, for once some facts.

    so he ends up with an even bigger problem. The first thing Charles should have done is to show the world which side he is on when the tabloids had a go at his children. In his place, I would have had a word with the owners of the Mail on Sunday and any other tabloids to tell them that trashing a...
  2. Woosh

    How to add a throttle to a Carrera Vengeance E Spec

    You can try moving the controller PAS wire to another pin to see if error 22 pops up again. For example move it to D1 and change the code: const byte TorqueOutputPin = D1;
  3. Woosh

    Brexit, for once some facts.

    I think the charge of racism needs to be looked into properly. It does not have to be publicly examined but we all need to know where the Family stands. The fact remains: the family did not want to support Harry and Meghan's tussle with ANL (Mail on Sunday). I suspect that they are so scared of...
  4. Woosh

    Brexit, for once some facts.

    BJ should have given your hamster the £37 billions of our money.
  5. Woosh

    How to add a throttle to a Carrera Vengeance E Spec

    this is the wiring that produces error 22 after 3 seconds: D13 to controller's cadence A2 to sensor's cadence. controller's torque to sensor's torque Can anyone see an explanation? see post #294
  6. Woosh

    How to add a throttle to a Carrera Vengeance E Spec

    we don't have a problem with the torque sensor low pass filter. The problem is with the cadence replication. see post #269 Raj had the torque wires joined together OUTSIDE the arduino board, the problem remains. He switched on the LCD and this happened: "I connected A5 [ controller side wire] to...
  7. Woosh

    How to add a throttle to a Carrera Vengeance E Spec

    yes, I agree and thank you for testing it out. I am out of idea at the moment. The best version is still version 8. Do you have a resistor across A2-GND? That's what INPUT_PULLDOWN does.
  8. Woosh

    Brexit, for once some facts.

    still, when he's on TV, compared to many other tory MPs, he does not look like a headless chicken or a rabbit caught in the headlights.
  9. Woosh

    Big Bear battery condition lights

    yes. Your greens and reds are normal.
  10. Woosh

    Brexit, for once some facts.

    Nadhim Zahawi is a lot more capable than Dido.
  11. Woosh

    How to add a throttle to a Carrera Vengeance E Spec

    Hi Raj, change that line to pinMode(CadenceInputPin, INPUT);
  12. Woosh

    Brexit, for once some facts.

    JHC is right on one thing, book online is quicker.
  13. Woosh

    Brexit, for once some facts.

    we should ban all imports/exports of vaccines until the politicians accept that cooperation is the only way forward.
  14. Woosh

    How to add a throttle to a Carrera Vengeance E Spec

    I have revised the code to addres vfr400's comments. 1. controller's non zero start: cadence input set to input_pulldown, torque input set to input_pullup. 2. low pass filter: previous code had 1ms time division for low pass, new code has half pulse (about 25ms) time division. New code records...
  15. Woosh

    How to add a throttle to a Carrera Vengeance E Spec

    that may explain what Raj found.
  16. Woosh

    How to add a throttle to a Carrera Vengeance E Spec

    There are two errors: 21 and 22. 21 relates to the rest state of the torque signal. When you stop pedalling, the torque voltage is 3.85V. When active, the torque voltage is linear between 1.5V (at 0NM) and 3.85V (80NM). Both Evian and Raj confirmed that characteristics independently with their...
  17. Woosh

    How to add a throttle to a Carrera Vengeance E Spec

    sorry about that. Could you change the setup() to; void setup() { pinMode(CadenceOutputPin, OUTPUT); pinMode(TorqueInputPin, INPUT_PULLUP); pinMode(TorqueOutputPin, OUTPUT); //ControllerTorquePin pinMode(CadenceInputPin, INPUT_PULLUP); //PASCadencePin startMillis = millis(); //...
  18. Woosh

    How to add a throttle to a Carrera Vengeance E Spec

    No, I thought the 1ms time division in the loop is sufficient to filter out transients. The output on A5 (controller's torque) is shaped by a simulated DAC, basically switching the pin to 5V with a pulse width modulator the torque output seems to work OK when the throttle is in charge. At the...
  19. Woosh

    How to add a throttle to a Carrera Vengeance E Spec

    I think one possible cause is D13 being overloaded because the current limit on D13 is only 40mA. 20mA already used by the LED. The solution is to move the Cadence Output from D13 to A4 and use D13 as LED indicator. // Test cadence and torque replication Version 2 // Avoid D13 because of the...
  20. Woosh

    How to add a throttle to a Carrera Vengeance E Spec

    Can you re-install the D13 wire and leave the A2 wire disconnected (in the air) to see if the motor starts on its own?