Arduino-esp32: digtalWrite to PIN 34 and 35 not working

Created on 19 Jun 2017  路  1Comment  路  Source: espressif/arduino-esp32

Is there something special that needs to be done to get GPIO pin 34 and 35 to work as DIGITAL WRITE pins?

byte pinNum = 34;
void setup() 
{
  pinMode(pinNum, OUTPUT);
}
void loop() 
{
  digitalWrite(pinNum, HIGH);   
  delay(100);                      
  digitalWrite(pinNum, LOW);   
  delay(50);
}

The above code does not work for pins 34 and 35. All other pins work fine. I have tried several boards.
I have one of these LuaNode ESP32 Dev Board

Most helpful comment

>All comments

Was this page helpful?
0 / 5 - 0 ratings

Related issues

OAXP picture OAXP  路  4Comments

ComputerLag picture ComputerLag  路  3Comments

huming2207 picture huming2207  路  4Comments

0x1abin picture 0x1abin  路  3Comments

jhowkis picture jhowkis  路  3Comments