Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Commit

Permalink
Merge pull request #12 from sebastianhodapp/patch-1
Browse files Browse the repository at this point in the history
Changed WrapperUdpLed::begin to use UDP-Port defined in ConfigStatic.
  • Loading branch information
SciLor authored Nov 14, 2016
2 parents 012e7a5 + 5be35ec commit 52ba93c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion HyperionRGB/WrapperUdpLed.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ WrapperUdpLed::WrapperUdpLed(uint16_t ledCount, uint16_t udpPort) {

void WrapperUdpLed::begin(void) {
Log.info("Open port %i for UDP...", _udpPort);
if (_udp.begin(19446)) {
if (_udp.begin(_udpPort)) {
Log.info("success");
} else {
Log.error("no success");
Expand Down

0 comments on commit 52ba93c

Please sign in to comment.