Bonjour a tous, mon projet avance mais je me trouve confronté à un problème de lib!!!
"VirtualWire" et "Servo" utilisent toute les deux le Timer1 et donc lors de la compilation ca bloque!!

VirtualWire =>
// This is the interrupt service routine called when timer1 overflows
// Its job is to output the next bit from the transmitter (every 8 calls)
// and to call the PLL code if the receiver is enabled
//ISR(SIG_OUTPUT_COMPARE1A)
SIGNAL(TIMER1_COMPA_vect)
{
vw_rx_sample = digitalRead(vw_rx_pin);
// Do transmitter stuff first to reduce transmitter bit jitter due
// to variable receiver processing
if (vw_tx_enabled && vw_tx_sample++ == 0)
{
// Send next bit
// Symbols are sent LSB first
// Finished sending the whole message? (after waiting one bit period
// since the last bit)
if (vw_tx_index >= vw_tx_len)
{
vw_tx_stop();
vw_tx_msg_count++;
}
else
{
digitalWrite(vw_tx_pin, vw_tx_buf[vw_tx_index] & (1 << vw_tx_bit++));
if (vw_tx_bit >= 6)
{
vw_tx_bit = 0;
vw_tx_index++;
}
}
}
if (vw_tx_sample > 7)
vw_tx_sample = 0;
if (vw_rx_enabled && !vw_tx_enabled)
vw_pll();
}
Servo =>
#ifndef WIRING // Wiring pre-defines signal handlers so don't define any if compiling for the Wiring platform
// Interrupt handlers for Arduino
#if defined(_useTimer1)
SIGNAL (TIMER1_COMPA_vect)
{
handle_interrupts(_timer1, &TCNT1, &OCR1A);
}
#endif
et plus loin...
Que faire ?

Dites moi qu'il y a une solution!! Mon projet de tourelle radioguidé (module 433Mhz) monté sur un 4*4 géant lui aussi radioguidé ...le tout piloté avec un joystick PS2 ne peut pas s’arrêter la