I am trying to power up the ADH8066 with my Uno. I think the code should look something like this:
int PWON = 7;
void setup()
{
pinMode(PWON, OUTPUT); // sets the digital pin as output
}
void loop()
{
digitalWrite(PWON, LOW);
delay(300);
digitalWrite(PWON, HIGH);
}
Pin 7 is connected to the ONKEY pin on the ADH8066. The datasheet say to pull this low for 300 ms for power up. If LEDs are suppose to light up on the ADH8066 when powered up none are after this code is executed. If they aren't how do I know if ADH8066 is powered up. If anyone has experience with the ADH8066 please let me know. I'm in need of help.