So you're a Noob? Post your questions here until you graduate! Don't be shy.

User avatar
By Thomas132
#94456 Hello,
I am trying to make a circuit with a serial commuication between a arduino and a esp8226 (they are not yet connected), but currently I am struggling to even connect the esp8266 with my computer. I already added the "Additional Board Manager URL" which was given in the instructions, downloaded the "esp8266 board manager". When I am plugging in the usb cabel from the esp8266 to my computer, other via usb connected devices disconnect, like my arduino.

Output from lsusb before connecting the esp:
Code: Select allBus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 003 Device 002: ID 046d:c077 Logitech, Inc. M105 Optical Mouse
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 019: ID 2341:0043 Arduino SA Uno R3 (CDC ACM)
Bus 001 Device 002: ID 046d:c328 Logitech, Inc. Corded Keyboard K280e
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

Output from lsusb after connecting the esp:
Code: Select allBus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 003 Device 002: ID 046d:c077 Logitech, Inc. M105 Optical Mouse
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 002: ID 046d:c328 Logitech, Inc. Corded Keyboard K280e
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub


The same happens when i try to connect the esp8266 on another computer, which is running windows:
Code: Select all# during the plugged in esp8266
PS C:\Users\user> Get-PnpDevice -PresentOnly | Where-Object { $_.InstanceId -match '^USB' }

Status     Class           FriendlyName                                                                     InstanceId
------     -----           ------------                                                                     ----------
OK         CDROM           hp DVDRW GUE1N USB Device                                                        USBSTOR\CDRO...
OK         USB             Generischer USB-Hub                                                              USB\VID_05E3...
OK         Camera          HP TrueVision HD Camera                                                          USB\VID_04F2...
OK         USB             USB-Root-Hub (USB 3.0)                                                           USB\ROOT_HUB...
OK         USB             USB-Massenspeichergerät                                                          USB\VID_04B7...
OK         USB             USB-Root-Hub (USB 3.0)                                                           USB\ROOT_HUB...
OK         Bluetooth       Realtek Bluetooth 4.2 Adapter                                                    USB\VID_0BDA...
OK         USB             USB-Verbundgerät                                                                 USB\VID_04F2...


# after removing the esp8266
PS C:\Users\user> Get-PnpDevice -PresentOnly | Where-Object { $_.InstanceId -match '^USB' }

Status     Class           FriendlyName                                                                     InstanceId
------     -----           ------------                                                                     ----------
OK         CDROM           hp DVDRW GUE1N USB Device                                                        USBSTOR\CDRO...
OK         HIDClass        USB-Eingabegerät                                                                 USB\VID_062A...
OK         USB             Generischer USB-Hub                                                              USB\VID_05E3...
OK         Camera          HP TrueVision HD Camera                                                          USB\VID_04F2...
OK         USB             USB-Verbundgerät                                                                 USB\VID_062A...
OK         USB             USB-Root-Hub (USB 3.0)                                                           USB\ROOT_HUB...
OK         USB             USB-Massenspeichergerät                                                          USB\VID_04B7...
OK         USB             USB-Root-Hub (USB 3.0)                                                           USB\ROOT_HUB...
OK         Bluetooth       Realtek Bluetooth 4.2 Adapter                                                    USB\VID_0BDA...
OK         USB             USB-Verbundgerät                                                                 USB\VID_04F2...



It would be great if somebody could tell me what am i doing wrong. Thanks in advance.