Describe the bug
ESP32 sample code ,run in ESP32 dev kit ,frequency show 0Mhz
find the problem here:
previousFrequency = currentFrequency = rx.getFrequency(); // 获取当前频率
it need to change to :
previousFrequency = currentFrequency = rx.getCurrentFrequency(); // 获取当前频率
Describe the bug
ESP32 sample code ,run in ESP32 dev kit ,frequency show 0Mhz
find the problem here:
previousFrequency = currentFrequency = rx.getFrequency(); // 获取当前频率
it need to change to :
previousFrequency = currentFrequency = rx.getCurrentFrequency(); // 获取当前频率