View Single Post
Old 10-16-2013, 02:36 PM   #198 (permalink)
josemapiro
EcoModding Apprentice
 
Join Date: Dec 2012
Location: Portugal
Posts: 197
Thanks: 93
Thanked 70 Times in 64 Posts
I was been testing the arduino mega and buttons legacy are working, but the injector readings does not give me any information, even tested if it worked? The information of the speed pin, did not get to test because had the car stopped in the garage.
The pins of the LCD to the Arduino Mega, is that they could be changed to free the PWM pins. I'm using the ports A
Code:
const uint8_t lcdData = 		(1 << 5); // on PORTA
const uint8_t lcdEnable = 		(1 << 4); // on PORTA
const uint8_t lcdBit3 = 		(1 << 0); // on PORTA
const uint8_t lcdBit2 = 		(1 << 1); // on PORTA
const uint8_t lcdBit1 = 		(1 << 2); // on PORTA
const uint8_t lcdBit0 = 		(1 << 3); // on PORTA
Another fantastic work, as always.

Thank you
José Rodrigues
  Reply With Quote