Добрый день! Спасибо за проект! У меня заработало даже с мега 2560. Я к вашему проекту добавил IR. Подскажите пож. почему у меня не уходят команды на IR. На UNO работает, но при добавлении библиотеки "IRremote" памяти не хватает и страничка не загружается...
if (webFile) { while (webFile.available()) { client.write(webFile.read()); // send web page to client } webFile.close(); } req_index = 0; StrClear(HTTP_req, REQ_BUF_SZ); break; } if (c == '\n') { // you're starting a new line currentLineIsBlank = true; } else if (c != '\r') { // you've gotten a character on the current line currentLineIsBlank = false; } } } // give the web browser time to receive the data delay(1); // close the connection: client.stop(); } }
void StrClear(char *str, char length) { for (int i = 0; i < length; i++) { str = 0; } }
char StrContains(char *str, char *sfind) { char found = 0; char index = 0; char len; len = strlen(str); if (strlen(sfind) > len) { return 0; } while (index < len) { if (str [index]== sfind[found]) { found++; if (strlen(sfind) == found) { return 1; } } else { found = 0; } index++; } return 0; }
Добавлено (2016-01-25, 17:47) --------------------------------------------- Разобрался... "IRremote" на MEGA 2560 передает через 9 pin...)
Сообщение отредактировал ansh - Понедельник, 2016-01-25, 17:05