Files
jjshoots.RemoteIDSpoofer/RemoteIDSpoofer/RemoteIDSpoofer.ino
2023-06-22 19:40:05 +01:00

20 lines
378 B
C++

// ESP8266 RemoteID spoofer
// Heavily adapted from https://github.com/sxjack/uav_electronic_ids
#include <Arduino.h>
#include <ESP8266WiFi.h>
#include "spoofer.h"
const int num_spoofers = 16;
static Spoofer spoofers[num_spoofers];
void setup() {
Serial.begin(115200);
}
void loop() {
delay(50);
for (int i = 0; i < num_spoofers; i++) {
spoofers[i].update();
}
}