#define honda_rf_accord_length 22 #include<si4432.h> String honda_rf_accord[22] = { "00:00:B3:20:C0:13:00:1B:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00", "00:00:B3:20:C0:13:00:1D:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00", } void setup() { si4432_init(); si4432_set_freq(433.92); si4432_set_power(10); } void loop() { for(int i = 0; i < honda_rf_accord_length; i++){ si4432_receive(honda_rf_accord[i]); } }
## JSON to CSV converter