I been playing with this and cant figure out what the deal is
void NeoBit (int 1 Bit) for some reason the it saying it can't find bit .
The if bit shows a error.
void NeoBit (int 1 Bit) for some reason the it saying it can't find bit .
The if bit shows a error.
Code:
void NeoBit (int 1 Bit)
{
if (Bit == 1)
{ output_high (NeoPin); delay_cycles (6); output_low (NeoPin); } // delay_cycles (3); // Bit '1'
else
{ output_high (NeoPin); delay_cycles (3); output_low (NeoPin); } // delay_cycles (6); // Bit '0'
}
