Search found 60 matches

by enitalp
Mon Oct 31, 2022 5:21 pm
Forum: Hardware
Topic: ESP32-S3 RGB LCD maximum throughput
Replies: 34
Views: 29051

Re: ESP32-S3 RGB LCD maximum throughput

Did any of you advance on the subject? ;)
by enitalp
Fri Dec 08, 2017 10:40 pm
Forum: Showcase
Topic: Canceled Project
Replies: 5
Views: 9639

Re: Canceled Project

Hi.

For a lot of reason.
The harware what not the main product, just an add on. We are video game maker. upper management feared the price of the hardware in stock if the game doesn't sell.
by enitalp
Thu Dec 07, 2017 4:13 pm
Forum: Showcase
Topic: Canceled Project
Replies: 5
Views: 9639

Re: Canceled Project

V4 replaced the MMA9553 for a KX126 ( to add tap and double tap support) Plus the board size should have been almost the final one. FTTDI and power, and charging was in a dock outside the wearable The board V4 DSC_0034.JPG Folding with the battery to gon in the box V4 DSC_0039.JPG And the box protot...
by enitalp
Thu Dec 07, 2017 4:06 pm
Forum: Showcase
Topic: Canceled Project
Replies: 5
Views: 9639

Re: Canceled Project

V3
V3 also integrated the USE_MMA9553 And FTDI was back on board
Proto V3.JPG
Proto V3.JPG (56.2 KiB) Viewed 9637 times
Proto V3-2.JPG
Proto V3-2.JPG (811.66 KiB) Viewed 9637 times
by enitalp
Thu Dec 07, 2017 3:56 pm
Forum: Showcase
Topic: Canceled Project
Replies: 5
Views: 9639

Canceled Project

So my project go canceled and will not make it to marked. Time to share some goodies. V1 was, Sparkfun and or Adafruit, Some sparkfun RGB Modiule MFRC522 RFID then and CLRC663b RFID Deb board. And in my hand the first produced V2 V1%20vs%20V2.JPG V2 (on right) Was using an esp wroom and added an Lp5...
by enitalp
Wed Aug 30, 2017 6:48 pm
Forum: General Discussion
Topic: How to switch the CPU mode between sleep mode and active mode?
Replies: 2
Views: 5304

Re: How to switch the CPU mode between sleep mode and active mode?

You mean ?

// Configure sleeping stuff
esp_deep_sleep_enable_ulp_wakeup();
esp_deep_sleep_enable_ext0_wakeup(GPIO_NUM_0,1);
or
esp_deep_sleep((uint64_t)l_SleepAmount*(uint64_t)1000000); // Convert second to microsecond
by enitalp
Wed Aug 30, 2017 6:45 pm
Forum: General Discussion
Topic: How to get WiFi and Bluetooth mac address using ESP32
Replies: 2
Views: 8875

Re: How to get WiFi and Bluetooth mac address using ESP32

ADC_2 Working when wifi is on ;p
by enitalp
Wed Aug 30, 2017 6:43 pm
Forum: General Discussion
Topic: How to get WiFi and Bluetooth mac address using ESP32
Replies: 2
Views: 8875

Re: How to get WiFi and Bluetooth mac address using ESP32

Wifi is pretty easy

uint8_t l_Mac[6];
esp_wifi_get_mac(ESP_IF_WIFI_STA, l_Mac);
by enitalp
Tue Aug 29, 2017 7:56 pm
Forum: Sample Code
Topic: [Video] ESP32 and MPU6050 accelerometer
Replies: 2
Views: 6462

Re: [Video] ESP32 and MPU6050 accelerometer

Nice ! great job.

on my side i just finished the integration of the Mma9553 on esp_idf, and i will start another code integration as we decided to use another chip.
by enitalp
Mon Aug 28, 2017 1:32 pm
Forum: ESP-IDF
Topic: Eclipse (Windows) does not find headers in components
Replies: 9
Views: 17996

Re: Eclipse (Windows) does not find headers in components

I stopped working with eclipse because of that. and even settings the path in the properties, i regularly lost them for no reason. Switched to visual studio code with a config file for esp-idf. It gave me the support of source control (Perforce) and correct parsing of include file recursivly in sub...