I just bought an Arduino CH340G UNO and installed the lastest driver from the page (www.wch.cn)
When i tried the "Blink" program (Arduino IDE 2.3.3), i notice how the led blinks like crazy, and when i added a Serial.println("gato");
(the word "gato" for testing purposes) to see what was going on, the output was even worse, and it was printing at a random rate (prints many "gato" in 1 second, prints them with corrupted chars, or just pieces of the word)
Here's the code:
void setup() {
Serial.begin(9600);
pinMode(13, OUTPUT);
}
void loop() {
digitalWrite(13, HIGH);
delay(1000);
digitalWrite(13, LOW);
delay(1000);
Serial.println("gato");
}
And here's the output:
gato
gato
gat
gatogato
gato
gato
�������%'-� C X=55��J��������P�w�����7����-W�~7��O���m����U^���f���Vo�7���]�b�~j���{�����n��y���^�������{wӿ�����������տ?�����o�����7���_��_�?~�����oz���^_����/�գ�����$��7������u����;���nպwe��������?��s��g>���)��W���=���������v�����������|�~;��_��xN�wav��|a�����������]��y�N������� ������s����ڳ�~��������=�_���a�zܗ���/��e�?�{����|nu�S����u��}�W������ǿ�~�M.o�}�ֿ���z����o�:�[���������~���Wםo�;�lw�o���6サ��o�_��]�~��������Y�S�*?������k������^�oJ�Z�/L���W+���n��������x���ߣ�����{�i?�sǛ��mk���u�������z��i�?���T[)���wm��Ι��~�ގص>c��ֿ�����)ߦ�w�d��o�g��vϾ��y���'�����=�y�����۶��y�������������������;���?��z�����0]��}���Yo\�8�{���#M{�V�[+����x�y���ڥO�m|����������>\����>��':�n_��~7�����������~>����nr���ӿ��}�۽�O����S��{���ѿ���K��mk���?�w�{s��J����n��=]��w>>�w�������W��\�����W��d��V��;�}���e�������/��y}���{�{�������~�����������z��r���3�n������������]��ץ�c#�G�o����&�}��w8�ދ���o5��+�7��=�m��y��[�g�m���>��/��=��o���os��|�~��n����c��o���z�Wgato
gato
ga��gato
gato
gato
gato
gato
ato
to
o
gato
gatoo
gat
gato
gato
is my Arduino UNO corrupted? or the IDE i'm using?
EDIT: The builtIn Led goes crazy, and sometimes even the TX and RX leds turn on for miliseconds, like, why?? am i choosing the wrong Board in the IDE? (Arduino UNO)