help aub om deze fout op te lossen in de lijn for ( int x = 0 ; x < 100 , x ++ ) { // 100 vooruitgang ( halve draai ) digitalWrite ( steppin, HIGH ) ; // één puls ( HOOG gedurende 5 ms ) vertraging Microseconden ( 5000 )
This has a comma:
for ( int x = 0 ; x < 100 , x ++ )
Likely intended to be a semi-colon:
for ( int x = 0 ; x < 100 ; x ++ )
By the way, a comma is a legitimate C/C++ operator so everything looked fine to the compiler until it reached the right parenthesis.
Er is een nederlandse sectie op dit forum; als je in het nederlands wilt posten ben je daar beter af.
There is a dutch section on this forum; if you want to post in Dutch, it's better to post there.