Moderator: igrr
Regards,
Melissa.
- Make sure the Arduino IDE is not running and the board is not connected
- Determine what USB -> UART convertor your board has:
- Download and install the correct driver (i.e.. CP2102 or CH340G)
- Connect the board to the computer and make sure it is seen (preferably make a note of its COM- or dev-port)
- Done
- Open a terminal with, for instance, PuTTY and connect using the port noted earlier at 74880 Baud
- Press the RESET switch on the board and watch your terminal window, it should show something like this:Code: Select all
ets Jan 8 2013,rst cause:?, boot mode:(?,?)
load 0x4010f000, len 1264, room 16
tail 0
chksum 0x42
csum 0x42
~ld
(The actual rst cause or boot mode will show some values instead of ?, but it's the general response that counts here) - If it looks like above, all is fine and you can start up the Arduino IDE and select the port
could be a permission problem accessing the usb device
this is what I see in my case
youruser@yourhost:~/$ ls -la /dev/ttyUSB0
crw-rw---- 1 root dialout 188, 0 May 14 19:57 /dev/ttyUSB0
checkout which groups your user belongs to
youruser@yourhost:~/$ groups
... dialout sudo audio dip video plugdev netdev bluetooth lpadmin ...
and eventually add dialout
sudo usermod -a -G dialout youruser