ESP module fixtures (jigs) for development

User avatar
Vader_Mester
Posts: 300
Joined: Tue Dec 05, 2017 8:28 pm
Location: Hungary
Contact:

ESP module fixtures (jigs) for development

Postby Vader_Mester » Wed Jan 10, 2018 7:47 am

I came across these fixtures (jigs) online for easy usage of WROOM and WROVER modules.

They work just like the Dev boards, except, that they are not breadboard compatible, but you can jumper the pins to a breadboard using wires.
No soldering is needed and each has a power button (button with white top), to turn power on/off while USB is plugged in.

I currently own the WROVER version, and it's very nice. Very useful for jobs, that require programming before soldering the modules.

For WROOM (And ALBWROVER modules):

Link for the module here

Picture.
Image

For WROVER modules:
https://www.aliexpress.com/item/ESP32-t ... 0.0.EQyvpK

Picture:
Image

Code: Select all

task_t coffeeTask()
{
	while(atWork){
		if(!xStreamBufferIsEmpty(mug)){
			coffeeDrink(mug);
		} else {
			xTaskCreate(sBrew, "brew", 9000, &mug, 1, NULL);
			xSemaphoreTake(sCoffeeRdy, portMAX_DELAY);
		}
	}
	vTaskDelete(NULL);
}

Who is online

Users browsing this forum: Bing [Bot] and 138 guests