Search found 32 matches

by knightridar
Sun Aug 08, 2021 9:10 am
Forum: ESP32 Arduino
Topic: NEO-6M GPS Module and ESP 32 Pico Kit V4.1 Serial port information not displaying in Arduino IDE
Replies: 3
Views: 5867

Re: NEO-6M GPS Module and ESP 32 Pico Kit V4.1 Serial port information not displaying in Arduino IDE

So I found some other sample code here: https://randomnerdtutorials.com/guide-to-neo-6m-gps-module-with-arduino/ This is the code I used except I added a few comments and I changed the pins to pins 22,23 for rx and tx connections. I downloaded the ESP32 software serial library to run software serial...
by knightridar
Sun May 30, 2021 8:59 am
Forum: ESP32 Arduino
Topic: NEO-6M GPS Module and ESP 32 Pico Kit V4.1 Serial port information not displaying in Arduino IDE
Replies: 3
Views: 5867

Re: NEO-6M GPS Module and ESP 32 Pico Kit V4.1 Serial port information not displaying in Arduino IDE

Sorry I was referring to the pinouts on the PICO-Kit v4.1
https://docs.espressif.com/projects/esp ... o-kit.html

Aren't those hardware serial pins good enough?
Pins 9 and 10

I still get a blank output in the serial monitor, using the code below.
by knightridar
Sun May 30, 2021 8:57 am
Forum: ESP32 Arduino
Topic: ESP32 Pico Kit V4.1 hardware serial pins what numbers are they on the board?
Replies: 3
Views: 3426

Re: ESP32 Pico Kit V4.1 hardware serial pins what numbers are they on the board?

But what if I want to use hardware serial are pins 9 and 10 good enough?
Right now all I get is zero display output.
by knightridar
Thu May 27, 2021 6:48 am
Forum: ESP32 Arduino
Topic: NEO-6M GPS Module and ESP 32 Pico Kit V4.1 Serial port information not displaying in Arduino IDE
Replies: 3
Views: 5867

NEO-6M GPS Module and ESP 32 Pico Kit V4.1 Serial port information not displaying in Arduino IDE

NEO-6M GPS Module and ESP 32 Pico Kit V4.1 Serial port information not displaying in Arduino IDE Hi, I've been trying to use simple sample code found online to display GPS information via the NEO-6M Gps module and it communication with the serial port of my ESP32 Pico Kit. I am only getting a blank ...
by knightridar
Sun May 23, 2021 5:47 am
Forum: ESP32 Arduino
Topic: ESP32 Pico Kit V4.1 hardware serial pins what numbers are they on the board?
Replies: 3
Views: 3426

ESP32 Pico Kit V4.1 hardware serial pins what numbers are they on the board?

Hi, ESP32 Pico Kit V4.1 hardware serial pins what numbers are they on the board? I've been trying to find them in the documentation. The closest thing I could find was U1TXD and U1RXD (IO pins 10, 9) Does a hardware code example exist somewhere of a hardware serial connection? I've been trying to ho...
by knightridar
Mon Jan 25, 2021 5:05 am
Forum: Hardware
Topic: ESP32-PICO-KIT Where and what are pin out numbers for SPI devices?
Replies: 4
Views: 7131

Re: ESP32-PICO-KIT Where and what are pin out numbers for SPI devices and pin out numbers for I2C devices?

Thanks the pins worked. I'm new to using the SPI interface but was focused on the speed benefits. However, I've read that there is no error checking like with i2C or UART. When is this beneficial and can this be avoided? Right now I have 0 experience with using JTAG debuggers and not sure why they a...
by knightridar
Tue Jan 19, 2021 6:35 am
Forum: Hardware
Topic: ESP32-PICO-KIT Where and what are pin out numbers for SPI devices?
Replies: 4
Views: 7131

ESP32-PICO-KIT Where and what are pin out numbers for SPI devices?

Hi, I'm using this: ESP32-PICO-KIT https://www.digikey.com/en/products/detail/espressif-systems/ESP32-PICO-KIT/9381703 I'm trying to figure out where the SPI pins are located on the board but the terminology on the ESP32 site is confusing. I know there are 4 sets of SPI pins based on the site below....
by knightridar
Sun Jul 19, 2020 5:39 am
Forum: ESP32 Arduino
Topic: ESP32 Deep Sleep, using millis in Arduino IDE, and then trying to do something in between
Replies: 5
Views: 10801

Re: ESP32 Deep Sleep, using millis in Arduino IDE, and then trying to do something in between

Well I solved the issue of my values updating successfully and being able to keep my serial readout at a pace that I wanted to read/transfer it at. I added these variables before void setup: uint32_t previousTime1 = 0; uint32_t deepsleepInterval = readingsInterval + 100; Then I added my deepsleep co...
by knightridar
Sat Jul 18, 2020 11:42 pm
Forum: ESP32 Arduino
Topic: ESP32 Deep Sleep, using millis in Arduino IDE, and then trying to do something in between
Replies: 5
Views: 10801

Re: ESP32 Deep Sleep, using millis in Arduino IDE, and then trying to do something in between

So I also have another reason for using millis on both the transmitter and receiver side. I used millis to slow down the output of the serial monitor readout so I can keep track of what is going on in the code. Here is what is happening when I removed millis from both transmitter side and receiver s...
by knightridar
Sat Jul 18, 2020 8:48 pm
Forum: ESP32 Arduino
Topic: ESP32 Deep Sleep, using millis in Arduino IDE, and then trying to do something in between
Replies: 5
Views: 10801

Re: ESP32 Deep Sleep, using millis in Arduino IDE, and then trying to do something in between

Thanks. I did what you said and put the flow of the deep sleep after reading 4 analog values and 1 I2C value. Without using ESP-Now and just reading 1 analog value without smoothing the values I was able to get a reading and put it to sleep. Since I'm using the ESP-Now protocol to transfer those val...