Xinyuan-LilyGO / LilyGo-LoRa-Series

LILYGO LoRa Series examples
602 stars 168 forks source link

problems use fsk from RadioLib #97

Closed A-SOM closed 2 months ago

A-SOM commented 1 year ago

Hello. i try send via RadioLib in fsk, but i can't take normal data. i send in hex: i take in hex: 15554745ba81b6e00000004001f07c81d38c666466ed900804020100804020100804020000

`
String bitString = "00010110111010100000110110110111000000000000000000000000001000000000001111000011110010000011101001110001100011001100110010001100110111011011001000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000000"; // Serial.println(bitString); byte data[bitString.length()/8];

for (int i = 0; i < bitString.length(); i += 8) { data[i/8] = strtol(bitString.substring(i, i+8).c_str(), 0, 2); } int state = radio.transmit(data, sizeof(data)); `

github-actions[bot] commented 3 months ago

This issue is stale because it has been open for 30 days with no activity.

github-actions[bot] commented 2 months ago

This issue was closed because it has been inactive for 14 days since being marked as stale.