да вроде как все просто, подключил к ардиуне hc-12 и пытюась передать при
while (HC12.available()) { // If Arduino's HC12 rx buffer has data
Serial.println("HC12 is available");
byteIn =
HC12.read(); // Store each character in byteIn
HC12ReadBuffer += char(byteIn); // Write each character of byteIn to HC12ReadBuffer
if (byteIn == '\n') { // At the end of the line
HC12End = true; // Set HC12End flag to true.
Serial.print("get data from HC12");
Serial.print(HC12ReadBuffer);
}
}
HC12 not available получается и сюда не заходи