-
Notifications
You must be signed in to change notification settings - Fork 539
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NodeMCU ESP32s #357
Comments
Please use the latest firmware. The |
thank you for the answer. In this case it only works in No_PHONE mode. When I do No_PHONE 0 it does not respond to commands.But the commands seem to work in the android app. |
If it works in the No_PHONE mode, it means that the wiring is correct. It seems the issue you are facing is with the connection between robot and phone then. Did you try to send commands from the serial monitor in Arduino? Does the robot info screen work when the robot is connected? |
Hi.
|
Hi. Guru Meditation Error: Core 1 panic'ed (InstrFetchProhibited). Exception was unhandled. ELF file SHA256: 0000000000000000 Backtrace: 0x00000000:0x3ffcafc0 0x400d14e6:0x3ffcafe0 0x400d1586:0x3ffcb000 0x400d860c:0x3ffcb020 0x400905de:0x3ffcb040 Rebooting... rst:0xc (SW_CPU_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT) |
Hey! @lechfak Which Android device have you used for connecting to the robot? If connecting via USB and the serial monitor is not sending commands to the robot, try using a different device for the connection. |
I am using the defualt firmware file and getting this error in my esp32 devkit v1 :
|
Hello.
I want to make DİY_ESP32 with NodeMCU ESP32s.
I used L298 as motor driver.
Where should I connect the CH_PWM_L1/ L2/R1/R2 and PIN_PWM_LF1/LB1... pins? I don't understand this.
When CH_PWM_L1 remains as is, all engines are running in NO_PHONE mode only. But none of them work in normal mode.
When I do the same with CH_PWM_... and PIN_PWM_.LF/LB.., only the motors on the left respond to commands.
//PWM properties
const int FREQ = 5000;
const int RES = 8;
const int CH_PWM_L1 =13;
const int CH_PWM_L2 = 12;
const int CH_PWM_R1 = 27;
const int CH_PWM_R2 = 33
const int PIN_PWM_LF1 = 13;
const int PIN_PWM_LF2 = 12;
const int PIN_PWM_LB1 = 13;
const int PIN_PWM_LB2 = 12;
const int PIN_PWM_RF1 = 27;
const int PIN_PWM_RF2 = 33;
const int PIN_PWM_RB1 = 27;
const int PIN_PWM_RB2 = 33;
What can I do?
The text was updated successfully, but these errors were encountered: