Skip to content

Commit 95c059c

Browse files
committed
Breaking change rename DLNA.h to dlna.h
1 parent 7cd69b5 commit 95c059c

File tree

20 files changed

+19
-19
lines changed

20 files changed

+19
-19
lines changed

examples/control-point-light-fast/control-point-light-fast.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Example to test the GUPnP Network Light Test Application - we do not do any discovery
22

33
#include "WiFi.h"
4-
#include "DLNA.h"
4+
#include "dlna.h"
55

66
const char* ssid = "SSID";
77
const char* password = "PASSWORD";

examples/control-point-light/control-point-light.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// discovery
33

44
#include "WiFi.h"
5-
#include "DLNA.h"
5+
#include "dlna.h"
66

77
const char* ssid = "SSID";
88
const char* password = "PASSWORD";

examples/control-point-media-renderer/control-point-media-renderer.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// starting playback, changing volume, and querying transport state.
44

55
#include "WiFi.h"
6-
#include "DLNA.h"
6+
#include "dlna.h"
77

88
// Replace these with your WiFi credentials
99
const char* ssid = "YOUR_SSID";

examples/control-point-media-server/control-point-media-server.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Discovers MediaServer devices and performs a Browse on the root ("0").
33

44
#include "WiFi.h"
5-
#include "DLNA.h"
5+
#include "dlna.h"
66

77
const char* ssid = "YOUR_SSID";
88
const char* password = "YOUR_PASSWORD";

examples/device-media-renderer/device-media-renderer.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Example for creating a Media Renderer
22

33
#include "WiFi.h"
4-
#include "DLNA.h"
4+
#include "dlna.h"
55

66
const char* ssid = "YOUR_SSID";
77
const char* password = "YOUR_PASSWORD";

examples/device-media-server-ethernet/device-media-server-ethernet.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// with a couple of test DIDL items. Configure the MAC address and (optionally)
44
// the static network settings before running on hardware without DHCP.
55

6-
#include "DLNA.h"
6+
#include "dlna.h"
77
#include <SPI.h>
88
#include <Ethernet.h>
99
#include <EthernetUdp.h>

examples/device-media-server-sdfat/device-media-server-sdfat.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
#include <SdFat.h>
2121

22-
#include "DLNA.h"
22+
#include "dlna.h"
2323
#include "WiFi.h"
2424
#include "tools/SdFatContentProvider.h"
2525

examples/device-media-server/device-media-server.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// http://162.55.180.156/csv/stations/search?tag=blues&offset=0&limit=30
77

88
#include "WiFi.h"
9-
#include "DLNA.h"
9+
#include "dlna.h"
1010

1111
// Replace with your WiFi credentials
1212
const char* ssid = "YOUR_SSID";

examples/tests/device-xml-parser/device-xml-parser.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Test XML generation for Device
2-
#include "DLNA.h"
2+
#include "dlna.h"
33
#include "device.h"
44

55
DLNADeviceInfo device_info;

examples/tests/device-xml/device-xml.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Test XML generation for Device
2-
#include "DLNA.h"
2+
#include "dlna.h"
33

44
DLNADeviceInfo device_info;
55

0 commit comments

Comments
 (0)