Project 10 Zoetrope - nothing happens (at all)

Hello, i have the same Problem.

Hbridge sits in the breadbord just fine.
no matter what values i change, nothing happens.

this is my setup:
(attachment)

and this is the code I used to test it. (beside the original project code):

// 8,9,10

void setup(){
  pinMode(8,OUTPUT);
  pinMode(9,OUTPUT);
  pinMode(10,OUTPUT);
}
void loop(){
  digitalWrite(8,HIGH);
  digitalWrite(9,LOW);
  analogWrite(10,150);  
}

i have no idea what i'm doing wrong. please help me.