Search results

  1. R

    Esp32 & teensy 4.1 not communicating

    I appreciate it. I got it communicating. Thanks a lot. :)
  2. R

    Esp32 & teensy 4.1 not communicating

    . I I enabled it and it was communicating. Thanks :)
  3. R

    Esp32 & teensy 4.1 not communicating

    In order to transfer the tx and rx from esp32 to teensy I think need to use the serial2.begin(); right? With Serial2.begin I'll should expect the tx and rx should be happening from teensy pins from 7 & 8 right?!
  4. R

    Esp32 & teensy 4.1 not communicating

    I tried it but didn't get any results I think it might be my ESP-32 not working properly. I'll try with a different ESP32(same model unopened) and let you know
  5. R

    Esp32 & teensy 4.1 not communicating

    I modified the code like this gave a try, For teensy: void setup() { Serial.begin(9600); // Serial2.begin(9600); } void loop() { Serial2.println("Hello Boss"); Serial.println("Hello Boss22"); //delay(150); } For Esp 32 // #define RXp2 16 // #define TXp2 17 void setup() {...
  6. R

    Esp32 & teensy 4.1 not communicating

    Hello, I'm trying to connect Teensy with esp32. I'm using Esp 32 to communicate with an Iot app and the data from the app need to be transferred to teensy. I was using Arduino mega for the same application but decided to replace it with teensy. I'm connecting the tx from esp 32 to rx on teensy...
  7. R

    Need help, Teensy 4.1 not reading analog input from as5600 hall sensor

    Yeah I feared that I might kill the teensy, but luckily I didn't. It's working as expected.
  8. R

    Need help, Teensy 4.1 not reading analog input from as5600 hall sensor

    Thanks Paul, I got it working. I did follow the instructions and it worked. Thanks for pointing it out, I'm able to get the code working on teensy.
  9. R

    Need help, Teensy 4.1 not reading analog input from as5600 hall sensor

    Hello everyone, I'm new to teensy, but familiar with arduino and arduino IDE. For a side project I decided to give teensy a try. My first and major hurdle is I'm unable to read the analog input from the sensor(as5600). I'm attaching the pin data from datasheet for the sensor. Link to the...
Back
Top