Search found 60 matches
- Mon Oct 31, 2022 5:21 pm
- Forum: Hardware
- Topic: ESP32-S3 RGB LCD maximum throughput
- Replies: 34
- Views: 39861
Re: ESP32-S3 RGB LCD maximum throughput
Did any of you advance on the subject?
- Fri Dec 08, 2017 10:40 pm
- Forum: Showcase
- Topic: Canceled Project
- Replies: 5
- Views: 10992
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.
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.
- Thu Dec 07, 2017 4:13 pm
- Forum: Showcase
- Topic: Canceled Project
- Replies: 5
- Views: 10992
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...
- Thu Dec 07, 2017 4:06 pm
- Forum: Showcase
- Topic: Canceled Project
- Replies: 5
- Views: 10992
Re: Canceled Project
V3
V3 also integrated the USE_MMA9553 And FTDI was back on board
V3 also integrated the USE_MMA9553 And FTDI was back on board
- Thu Dec 07, 2017 3:56 pm
- Forum: Showcase
- Topic: Canceled Project
- Replies: 5
- Views: 10992
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...
- 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: 5971
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
// 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
- Wed Aug 30, 2017 6:45 pm
- Forum: General Discussion
- Topic: How to get WiFi and Bluetooth mac address using ESP32
- Replies: 2
- Views: 9654
Re: How to get WiFi and Bluetooth mac address using ESP32
ADC_2 Working when wifi is on ;p
- Wed Aug 30, 2017 6:43 pm
- Forum: General Discussion
- Topic: How to get WiFi and Bluetooth mac address using ESP32
- Replies: 2
- Views: 9654
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);
uint8_t l_Mac[6];
esp_wifi_get_mac(ESP_IF_WIFI_STA, l_Mac);
- Tue Aug 29, 2017 7:56 pm
- Forum: Sample Code
- Topic: [Video] ESP32 and MPU6050 accelerometer
- Replies: 2
- Views: 7315
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.
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.
- Mon Aug 28, 2017 1:32 pm
- Forum: ESP-IDF
- Topic: Eclipse (Windows) does not find headers in components
- Replies: 9
- Views: 20199
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...