Search found 85 matches

by Duhjoker
Tue Jan 16, 2018 9:42 am
Forum: ESP-IDF
Topic: Cant finish IDF installation win 10 64
Replies: 9
Views: 14245

Re: Cant finish IDF installation win 10 64

I'm starting to figure it out again besides using cl for my pi, my first computer was a 286. I'm just rusty. Ok I'm trying to do the hello world program. I'm in msys32 and I have navigated the hello_world directory. When I try to do make menu config I get these errors... Duhjoker@DESKTOP-3CJM876 MIN...
by Duhjoker
Tue Jan 16, 2018 8:26 am
Forum: ESP-IDF
Topic: Cant finish IDF installation win 10 64
Replies: 9
Views: 14245

Re: Cant finish IDF installation win 10 64

I use pi so I'm kind of used it but its been a while. Ok I ended up changing the path to C:/ where the esp-if folder is and did the git. I think it worked since the esp-idf folder is full now. But when I go to add the second git cd ~/esp/esp-idf git submodule update --init it gives me the bash cd: n...
by Duhjoker
Tue Jan 16, 2018 5:59 am
Forum: ESP-IDF
Topic: Cant finish IDF installation win 10 64
Replies: 9
Views: 14245

Re: Cant finish IDF installation win 10 64

So I just simply need to make folder in my c root directory called "esp-idf"
by Duhjoker
Tue Jan 16, 2018 5:40 am
Forum: ESP-IDF
Topic: Cant finish IDF installation win 10 64
Replies: 9
Views: 14245

Cant finish IDF installation win 10 64

hi guys I'm trying to install the idf onto my computer running windows 10 64bit. I followed the links for installation from the git hub page. https://esp-idf.readthedocs.io/en/latest/get-started/windows-setup.html ive downloaded and unzipped the tool chain and I got to next steps and followed that l...
by Duhjoker
Tue Jan 16, 2018 12:19 am
Forum: ESP32 Arduino
Topic: i2c analog joy stick glitches
Replies: 1
Views: 3272

Re: i2c analog joy stick glitches

Anybody have any clues? Is it hardware or maybe using elapsed millis? I2C?
by Duhjoker
Mon Jan 15, 2018 1:09 am
Forum: ESP32 Arduino
Topic: i2c analog joy stick glitches
Replies: 1
Views: 3272

i2c analog joy stick glitches

hi guys I'm having some problems with using a feather wing joys with my huzzah 32. I'm trying to implement a timer that repeats the analog movement so an object can be moved on screen constantly while the stick is being used. If I use the adafruit seesaw example bits as they stand into my game progr...
by Duhjoker
Sat Jan 13, 2018 3:50 am
Forum: ESP32 Arduino
Topic: Arduino elapsedMillis.h with esp32
Replies: 0
Views: 2919

Arduino elapsedMillis.h with esp32

Can Arduino elepsedMillis.h library be used with esp32? I need to be able to use it so I can repeat functions on a regular basis but its not included in the ESP32/Arduino library. I can add it but will it work?
by Duhjoker
Sun Jan 07, 2018 12:58 am
Forum: ESP32 Arduino
Topic: ESP32 I2C mapping
Replies: 32
Views: 51350

Re: ESP32 I2C mapping

I cant get both i2c devices to work at the same time. I gat one side going or he other per compile. So I know they both work. What am I doing wrong here? #include "Adafruit_seesaw.h" Adafruit_seesaw ss; #define BUTTON_RIGHT 6 /////////////what are these integers #define BUTTON_DOWN 7 /////////////" ...
by Duhjoker
Sat Jan 06, 2018 6:58 am
Forum: ESP32 Arduino
Topic: ESP32 I2C mapping
Replies: 32
Views: 51350

Re: ESP32 I2C mapping

I decided to just use the same bus for both i2c devices. Much easier and I only had to modify the seesaws begin to open both device addresses. I was concerned about reaction time from when the button pressed to the point where it executes onto a tft screen. For Gaming. It was pointed out to though t...
by Duhjoker
Fri Jan 05, 2018 3:47 am
Forum: ESP32 Arduino
Topic: ESP32 I2C mapping
Replies: 32
Views: 51350

Re: ESP32 I2C mapping

ok what was easiest for me to do was go into wire and add a second begin. The second one points to the second set of i2c pins void TwoWire::begin2(int sdaPin, int sclPin, uint32_t frequency2) { if(sdaPin < 0) { if(num == 0) { sdaPin = SDA2; } else { return; } } if(sclPin < 0) { if(num == 0) { sclPin...