This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/ip firewall filter | |
add action=reject chain=forward comment="Reject MS Telemetry" \ | |
dst-address-list=MStelemetry reject-with=icmp-network-unreachable | |
/ip firewall address-list | |
add address=111.221.29.177 list=MStelemetry | |
add address=111.221.29.253 list=MStelemetry | |
add address=131.253.40.37 list=MStelemetry | |
add address=134.170.30.202 list=MStelemetry | |
add address=134.170.115.60 list=MStelemetry |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <string.h> | |
#include <stdio.h> | |
#include <Adafruit_NeoPixel.h> | |
// Which pin on the Arduino is connected to the NeoPixels? | |
#define PIN 0 // On Trinket or Gemma, suggest changing this to 1 | |
// How many NeoPixels are attached to the Arduino? | |
#define NUMPIXELS 15 // Popular NeoPixel ring size |