Адаптация этого arduino инструктируется для ESP32 - PullRequest
0 голосов
/ 16 декабря 2018

Я пытаюсь создать проект, аналогичный найденному здесь:

Простые меню Arduino для поворотных энкодеров

Однако я использую ESP32, а не плата Arduino.

Чтобы добраться до этого места, мне нужно, чтобы мой Роторный кодировщик работал с его кодом: Улучшено чтение Ротационного кодировщика Arduino

Однако яне могу скомпилировать код и получить сообщение об ошибке «PIND».Эта строка:

reading = PIND & 0xC; // read all eight pin values then strip away all but pinA and pinB's values.

Итак, мой вопрос: есть ли у вас идея относительно того, как я могу адаптировать кодировщик для работы с ESP32?

Большое спасибо вавансовый.:)

Его полный код:

/*******Interrupt-based Rotary Encoder Sketch*******
by Simon Merrett, based on insight from Oleg Mazurov, Nick Gammon, rt, Steve Spence
*/

static int pinA = 2; // Our first hardware interrupt pin is digital pin 2
static int pinB = 3; // Our second hardware interrupt pin is digital pin 3
volatile byte aFlag = 0; // let's us know when we're expecting a rising edge on pinA to signal that the encoder has arrived at a detent
volatile byte bFlag = 0; // let's us know when we're expecting a rising edge on pinB to signal that the encoder has arrived at a detent (opposite direction to when aFlag is set)
volatile byte encoderPos = 0; //this variable stores our current value of encoder position. Change to int or uin16_t instead of byte if you want to record a larger range than 0-255
volatile byte oldEncPos = 0; //stores the last encoder position value so we can compare to the current reading and see if it has changed (so we know when to print to the serial monitor)
volatile byte reading = 0; //somewhere to store the direct values we read from our interrupt pins before checking to see if we have moved a whole detent

void setup() {
  pinMode(pinA, INPUT_PULLUP); // set pinA as an input, pulled HIGH to the logic voltage (5V or 3.3V for most cases)
  pinMode(pinB, INPUT_PULLUP); // set pinB as an input, pulled HIGH to the logic voltage (5V or 3.3V for most cases)
  attachInterrupt(0,PinA,RISING); // set an interrupt on PinA, looking for a rising edge signal and executing the "PinA" Interrupt Service Routine (below)
  attachInterrupt(1,PinB,RISING); // set an interrupt on PinB, looking for a rising edge signal and executing the "PinB" Interrupt Service Routine (below)
  Serial.begin(115200); // start the serial monitor link
}

void PinA(){
  cli(); //stop interrupts happening before we read pin values
  reading = PIND & 0xC; // read all eight pin values then strip away all but pinA and pinB's values
  if(reading == B00001100 && aFlag) { //check that we have both pins at detent (HIGH) and that we are expecting detent on this pin's rising edge
    encoderPos --; //decrement the encoder's position count
    bFlag = 0; //reset flags for the next turn
    aFlag = 0; //reset flags for the next turn
  }
  else if (reading == B00000100) bFlag = 1; //signal that we're expecting pinB to signal the transition to detent from free rotation
  sei(); //restart interrupts
}

void PinB(){
  cli(); //stop interrupts happening before we read pin values
  reading = PIND & 0xC; //read all eight pin values then strip away all but pinA and pinB's values
  if (reading == B00001100 && bFlag) { //check that we have both pins at detent (HIGH) and that we are expecting detent on this pin's rising edge
    encoderPos ++; //increment the encoder's position count
    bFlag = 0; //reset flags for the next turn
    aFlag = 0; //reset flags for the next turn
  }
  else if (reading == B00001000) aFlag = 1; //signal that we're expecting pinA to signal the transition to detent from free rotation
  sei(); //restart interrupts
}

void loop(){
  if(oldEncPos != encoderPos) {
    Serial.println(encoderPos);
    oldEncPos = encoderPos;
  }
}

1 Ответ

0 голосов
/ 16 декабря 2018

PIND - это один из регистров только для совместимых плат Arduino, который можно использовать для так называемой прямой манипуляции с портом.

В частности, PIND - это регистр ввода порта D (выводы от 0 до 7 в UNO)

Например, чтение этого регистра даст вам состояние ввода каждого gpio от PIN0 до PIN7,В Rotary Encoder это используется для считывания всех значений PORTD за один раз, а затем для маскирования других выводов, кроме «pinA» и «pinB», которые являются выводами 2 и 3 соответственно.

Этоне будет работать на ESP32, так как эта платформа не имеет такого регистра (помните, что вы делаете прямой аппаратный доступ здесь и не используете стандартный API Arduino). Вы можете посмотреть на GPIO_IN_REG в ESP32, который вы можете использовать для чтения состояний выводов GPIO.аналогичным образом.GPIO_IN_REG вернет входные значения GPIO от 0 до 31.

Вы также можете попробовать использовать эту библиотеку: https://github.com/igorantolic/ai-esp32-rotary-encoder, если вам нужно что-то уже сделать, вместо того, чтобы заново изобретать колесо, если только оно не предназначено дляваши учебные цели.

...