hiii, i have found the problem is that arduino 1.0 have new libraries.
so here is the problem
Serial.print( 79, BYTE ) ;
Serial.print( 67, BYTE ) ;
Serial.print( triggerVoltage, BYTE ) ;
Serial.print( DataRemaining>>8, BYTE ) ;
Serial.print( DataRemaining&0xff, BYTE ) ;
for (int i=0;i<2;i++)
{
Serial.print( triggerVoltage, BYTE ) ;
}
these in your version bur for arduino 1.0 must be
Serial.write( 79) ;
Serial.write( 67) ;
Serial.write( triggerVoltage) ;
Serial.write( DataRemaining>>8) ;
Serial.write( DataRemaining&0xff) ;
for (int i=0;i<2;i++)
{
Serial.write( triggerVoltage) ;
}
these fix the error.....
but still in windows xp i cant star the program XOscillo it doesn't
run....
and in linux when i choose new arduino analog o digital it says
waiting for trigger y dont know what to do.... have a sensor connected
to A0 for reading but nothing happens.
i want to add a tutorial in arduino playgorund for OXscillo but i cant
get it run