diff --git a/interface/.env b/interface/.env index a312b2a..9479730 100644 --- a/interface/.env +++ b/interface/.env @@ -1,5 +1,5 @@ # This is the name of your project. It appears on the sign-in page and in the menu bar. -REACT_APP_PROJECT_NAME=ESP8266 React +REACT_APP_PROJECT_NAME=WordClock # This is the url path your project will be exposed under. REACT_APP_PROJECT_PATH=project diff --git a/interface/package.json b/interface/package.json index ff73548..6b0355e 100644 --- a/interface/package.json +++ b/interface/package.json @@ -1,5 +1,5 @@ { - "name": "esp8266-react", + "name": "wordclock", "version": "0.1.0", "private": true, "dependencies": { diff --git a/src/main.cpp b/src/main.cpp index c1d063f..2cb0e0b 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -14,8 +14,7 @@ ClockService cservice = ClockService(&server, esp8266React.getSecurityManager()) void setup() { // start serial and filesystem Serial.begin(SERIAL_BAUD_RATE); - Serial.print("Starting WordClock "); - Serial.println(VERSION); + Serial.printf("Starting WordClock %s", VERSION); // start the framework and demo project esp8266React.begin();