Fake ESPWROOM32?

jeseras
Posts: 3
Joined: Sun Feb 13, 2022 11:10 am

Fake ESPWROOM32?

Postby jeseras » Sun Feb 13, 2022 12:41 pm

Hello,

Buy about 100 of ESP32's on Aliexpress and several of them come written with FCCID:2ACC7-ESPPWROO32

They work, but not exactly the same. For example, WiFi has less range.

They are not manufactured by Espressif.

I can't find any information about it on the internet. Has it happened to someone? Or do you know anything about these fake ESP32s?

Thank you.

Image

ESP_Sprite
Posts: 9591
Joined: Thu Nov 26, 2015 4:08 am

Re: Fake ESPWROOM32?

Postby ESP_Sprite » Mon Feb 14, 2022 1:27 am

Yeah, those seem to be fakes, as in, that FCC code leads nowhere. The initial code is close to Espressifs grantee code (2AC7Z vs 2ACC7) but the actual code comes up with an unrelated German company. The model number is not something Espressif has (note the double P in the model number), and doesn't seem to have anything associated in the FCC database. Given that I'm not aware of any fake ESP32 chips being reported anywhere, the chip in there is likely original, but the module seems to be put together by a third party (which by itself is perfectly fine) but seems to hint at being our product (which is questionable) and which has a fake FCCID stamped on the package (which is misleading at best). Given that the antenna and RF design is entirely unknown, I'm not surprised to learn they have less reach than official modules. Sorry, that's about all I can say about them.

jeseras
Posts: 3
Joined: Sun Feb 13, 2022 11:10 am

Re: Fake ESPWROOM32?

Postby jeseras » Wed Feb 16, 2022 12:46 pm

Thank you.

I have bought from different Aliexpress suppliers and half of them have sold me these fake ESP32.

Honestly, I'm surprised no one has noticed yet.

They work but the WiFi problem is something that worries me.

programmer
Posts: 1
Joined: Sat Feb 19, 2022 5:05 pm

Re: Fake ESPWROOM32?

Postby programmer » Sat Feb 19, 2022 5:09 pm

What is the driver of this esp32 and what is the name of board in arduino? nodemcu-32 or other, please.

jeseras
Posts: 3
Joined: Sun Feb 13, 2022 11:10 am

Re: Fake ESPWROOM32?

Postby jeseras » Tue Feb 22, 2022 6:43 pm

In my case, it comes assembled on a board similar to the nodemcu. I in arduino select the board "doit esp32 devkit v1". But it has another problem, and that is that the first time you record you must keep the flash button pressed.

Uxia Victoria
Posts: 1
Joined: Thu Nov 03, 2022 4:18 am

Re: Fake ESPWROOM32?

Postby Uxia Victoria » Thu Nov 03, 2022 4:28 am

Hi, I have the trouble, I bought another ESP32, because mi DOIT ESP32 KIT V1 is damaged.
In my country I can't find another ESP-32 with NODE MCU format, but I found a Wemos D1 R32, with Arduino board format.
Its code is like this post: ESPPWROO32.
I was trying to program in both "Cores" but this chip probably is single core because I had many Core 1 register dump.

I used this code:

Code: Select all

TaskHandle_t Task1;

void setup() 
{
  xTaskCreatePinnedToCore(
  loop2,
  "Task_1",
  1000,
  NULL,
  1,
  &Task1,
  0);
  Serial.begin(115200);
}

void loop() 
{
  Serial.println("Core # -> " + String(xPortGetCoreID()));
  delay(1000);
}

void loop2(void *parameter)
{
  for(;;)
  {
  Serial.println("\t\t\tCore # -> " + String(xPortGetCoreID()));
  delay(1000);
  }
  vTaskDelay(10);
}
Maybe this is another problem with this "fake chip".
Regards

Who is online

Users browsing this forum: No registered users and 132 guests