For your own sanity, please don't just say 'pwm01 = 155; // slow forward.'
do this instead:
Code:
#define DRIVE_SLOW_FWD 155
#define DRIVE_SLOW_REV 99
// other code...
pwm01 = DRIVE_SLOW_FWD;
For one, it saves you a comment every time you use that value
for two, if you ever want to change the value, you don't have to find'n'replace 155
But, to allow you to save face, I'm going to assume that you replaced your #define or equivalent with 155 when you pasted for clarity.
This comment was directed toward new programmers.