From a43d6394670d6e48d143c7689dfcd6a571db34f0 Mon Sep 17 00:00:00 2001 From: e2002 Date: Fri, 24 Feb 2023 17:15:17 +0300 Subject: [PATCH] v0.8.962 --- HA/custom_components/yoradio/media_player.py | 6 +- ...ration.yaml => example_configuration.yaml} | 0 README.md | 69 ++++++++++--------- {exsamples => examples}/mqttoptions.h | 0 {exsamples => examples}/myoptions.h | 4 +- {exsamples => examples}/mytheme.h | 0 .../plugins/backlightcontrols.ino | 0 {exsamples => examples}/plugins/deepsleep.ino | 0 yoRadio/src/audioVS1053/audioVS1053Ex.cpp | 8 +-- yoRadio/src/core/mqtt.h | 9 +-- yoRadio/src/core/options.h | 6 +- yoRadio/src/core/player.cpp | 2 +- 12 files changed, 56 insertions(+), 48 deletions(-) rename HA/{exsample_configuration.yaml => example_configuration.yaml} (100%) rename {exsamples => examples}/mqttoptions.h (100%) rename {exsamples => examples}/myoptions.h (98%) rename {exsamples => examples}/mytheme.h (100%) rename {exsamples => examples}/plugins/backlightcontrols.ino (100%) rename {exsamples => examples}/plugins/deepsleep.ino (100%) diff --git a/HA/custom_components/yoradio/media_player.py b/HA/custom_components/yoradio/media_player.py index 346ffa0..17b874e 100644 --- a/HA/custom_components/yoradio/media_player.py +++ b/HA/custom_components/yoradio/media_player.py @@ -9,7 +9,7 @@ from homeassistant.helpers.aiohttp_client import async_get_clientsession _LOGGER = logging.getLogger(__name__) -VERSION = '0.8.950' +VERSION = '0.8.957' DOMAIN = "yoradio" @@ -226,8 +226,8 @@ class yoradioDevice(MediaPlayerEntity): media_type = MEDIA_TYPE_URL play_item = await media_source.async_resolve_media(self.hass, media_id, self.entity_id) media_id = async_process_play_media_url(self.hass, play_item.url) - if media_type in (MEDIA_TYPE_URL): - media_id = async_process_play_media_url(self.hass, media_id) + #if media_type in (MEDIA_TYPE_URL): + # media_id = async_process_play_media_url(self.hass, media_id) await self.api.set_browse_media(media_id) async def async_select_source(self, source): diff --git a/HA/exsample_configuration.yaml b/HA/example_configuration.yaml similarity index 100% rename from HA/exsample_configuration.yaml rename to HA/example_configuration.yaml diff --git a/README.md b/README.md index 06e4350..a9d2bbd 100644 --- a/README.md +++ b/README.md @@ -95,8 +95,8 @@ https://e2002.github.io/docs/myoptions-generator.html --- ## Hardware setup -Dont edit the options.h! \ -Hardware is adjustment in the **[myoptions.h](exsamples/myoptions.h)** file. +Don't edit the options.h! \ +Hardware is adjustment in the **[myoptions.h](examples/myoptions.h)** file. **Important!** You must choose between I2S DAC and VS1053 by disabling the second module in the settings: @@ -137,12 +137,12 @@ Rotation of the display:
- Arduino IDE version 2.x.x is not supported. Use Arduino IDE 1.8.19 -- ESP32 core version 2.0.0 or higgest is [required](https://github.com/espressif/arduino-esp32)! +- ESP32 core version 2.0.0 or higher is [required](https://github.com/espressif/arduino-esp32)! 1. Generate a myoptions.h file for your hardware configuration using [this tool](https://e2002.github.io/docs/myoptions-generator.html). 2. Put myoptions.h file next to yoRadio.ino and restart Arduino IDE. 3. In ArduinoIDE - upload sketch data via Tools→ESP32 Sketch Data Upload ([it's here](images/board2.jpg)) 4. Upload the sketch to the board -5. Connect to yoRadioAP acces point with password 12345987, go to http://192.168.4.1/ configure and wifi connections. \ +5. Connect to yoRadioAP access point with password 12345987, go to http://192.168.4.1/ configure and wifi connections. \ _\*this step can be skipped if you add WiFiSSID WiFiPassword pairs to the [yoRadio/data/data/wifi.csv](yoRadio/data/data/wifi.csv) file (tab-separated values, one line per access point) before uploading the sketch data in step 1_ 6. After successful connection go to http://\/ , add stations to playlist (or import WebStations.txt from KaRadio) 7. Well done! @@ -175,7 +175,7 @@ download _http://\/data/playlist.csv_ and _http://\/data --- ## MQTT -1. Copy file exsamples/mqttoptions.h to yoRadio/ directory +1. Copy file examples/mqttoptions.h to yoRadio/ directory 2. In the mqttoptions.h file, change the options to the ones you need 3. Well done! @@ -185,14 +185,14 @@ download _http://\/data/playlist.csv_ and _http://\/data 0. Requires [MQTT integration](https://www.home-assistant.io/integrations/mqtt/) 1. Copy directory HA/custom_components/yoradio to .homeassistant/custom_components/ -2. Add yoRadio entity into .homeassistant/configuration.yaml ([see exsample](HA/exsample_configuration.yaml)) +2. Add yoRadio entity into .homeassistant/configuration.yaml ([see example](HA/example_configuration.yaml)) 3. Restart Home Assistant 4. Add Lovelace Media Player card to UI (or [mini-media-player](https://github.com/kalkih/mini-media-player) card) 5. Well done! --- ## More features -- Сan add up to 65535 stations to a playlist. Supports and imports [KaRadio](https://github.com/karawin/Ka-Radio32) playlists (WebStations.txt) +- Can add up to 65535 stations to a playlist. Supports and imports [KaRadio](https://github.com/karawin/Ka-Radio32) playlists (WebStations.txt) - Telnet with KaRadio format output \ **see [list of available commands](https://github.com/e2002/yoradio/wiki/List-of-available-commands-(UART-telnet-GET-POST))** @@ -218,11 +218,16 @@ download _http://\/data/playlist.csv_ and _http://\/data --- ## Plugins -There is no documentation yet, you will have to deal with the examples, which is in directory [exsamples/plugins/](https://github.com/e2002/yoradio/tree/main/exsamples/plugins).\ +There is no documentation yet, you will have to deal with the examples, which is in directory [examples/plugins/](https://github.com/e2002/yoradio/tree/main/examples/plugins).\ Work is in progress... --- ## Version history +#### v0.8.962 +- fixed reboot error after sending media from Home Assistant +- fixed bug when playing media from Home Assistant for VS1053 +- fix grammar errors + #### v0.8.950 - added support for remote media playback from Home Assistant (Local Media, Radio Browser, TTS) @@ -244,7 +249,7 @@ Work is in progress... #### v0.8.901 **!!! a [full update](#update-over-web-interface) with Sketch data upload is required. After updating please press CTRL+F5 in browser !!!** \ **Please backup playlist.csv and wifi.csv before updating.** -- added SD Card support (more info in [connection table](#connection-tables) and [exsamples/myoptions.h](https://github.com/e2002/yoradio/blob/main/exsamples/myoptions.h)) +- added SD Card support (more info in [connection table](#connection-tables) and [examples/myoptions.h](https://github.com/e2002/yoradio/blob/main/examples/myoptions.h)) - added MODE button to switch SD/WEB modes (more info in [Controls.md](https://github.com/e2002/yoradio/blob/main/Controls.md)) - asterisk on the remote control now switches SD/WEB modes - double click BTN_CENTER and ENC_BTNB now toggles SD/WEB modes @@ -255,7 +260,7 @@ Work is in progress... - fixed work of start/stop button in configurations with DSP_DUMMY #### v0.8.138 -- fixed unclosed comment in exsamples/myoptions.h +- fixed unclosed comment in examples/myoptions.h #### v0.8.137 - fixed compilation error without encoder @@ -278,7 +283,7 @@ Work is in progress... - increased length of SSID string to 30 characters (requires full update + ESP32 Data Upload) - fixed artifacts when adjusting the volume on OLED displays - fixed bug with missing current station in playlist on OLED displays -- new parameter DSP_INVERT_TITLE - invert colors in station name for OLED displays (more details in exsamples/myoptions.h) +- new parameter DSP_INVERT_TITLE - invert colors in station name for OLED displays (more details in examples/myoptions.h) #### v0.8.03b - added support for ST7796 display @@ -292,11 +297,11 @@ Work is in progress... #### v0.8.02b - fixed artifacts when displaying the volume level -- changes in mytheme.h . Added colors COLOR_PL_CURRENT, COLOR_PL_CURRENT_BG, COLOR_PL_CURRENT_FILL. Details in [exsamples/mytheme.h](exsamples/mytheme.h) +- changes in mytheme.h . Added colors COLOR_PL_CURRENT, COLOR_PL_CURRENT_BG, COLOR_PL_CURRENT_FILL. Details in [examples/mytheme.h](examples/mytheme.h) #### v0.8.01b - fix INITR_MINI160x80 compiling error -- fix ENC_INTERNALPULLUP descriotion in exsamples/myoptions.h +- fix ENC_INTERNALPULLUP description in examples/myoptions.h #### v0.8.00b - rewritten the display engine @@ -304,9 +309,9 @@ Work is in progress... - the VU_PARAMS3 parameter is deprecated. VUmeter configuration is done through yoRadio/src/displays/conf/ configs - added bitrate display on displays - added the ability to display the weather on all displays except LCD1602 -- examples of plug-ins related to displaying information on the display are outdated and no longer work. The examples have been removed from the exsamples/plugins folder. +- examples of plug-ins related to displaying information on the display are outdated and no longer work. The examples have been removed from the examples/plugins folder. - the structure of the project files has been changed so that I don’t know what. -- localization of information displayed on the display (rus, en). Option L10N_LANGUAGE (EN by default. see exsamples/myoptions.h for details) +- localization of information displayed on the display (rus, en). Option L10N_LANGUAGE (EN by default. see examples/myoptions.h for details) - changes in mytheme.h . Added colors COLOR_STATION_BG, COLOR_STATION_FILL, COLOR_BITRATE - optimization, refactoring - bugs fixes @@ -323,7 +328,7 @@ Work is in progress... - fixed clock operation when configured with DSP_DUMMY - fixed RSSI display in web interface when configured with DSP_DUMMY - added brightness control/on/off nextion displays from the web interface -- new parameter WAKE_PIN (to wake up esp after sleep command earlier than given time (see exsamples/myoptions.h and list of commands) +- new parameter WAKE_PIN (to wake up esp after sleep command earlier than given time (see examples/myoptions.h and list of commands) - minor memory optimization #### v0.7.490 @@ -350,25 +355,25 @@ _On red boards and normally working green boards, nothing else needs to be done. #### v0.7.402 **!!! a [full update](#update-over-web-interface) with Sketch data upload is required. After updating please press CTRL+F5 in browser !!!** \ **Please backup playlist.csv and wifi.csv before updating.** -- added the ability to themize color displays. Details in [exsamples/mytheme.h](exsamples/mytheme.h) +- added the ability to themize color displays. Details in [examples/mytheme.h](examples/mytheme.h) - in this connection, examples of plugins displayhandlers.ino and rssibitrate.ino have been updated - parameter VU_PARAMS2 is deprecated. New parameter - VU_PARAMS3. Details in [yoRadio/display_vu.h](yoRadio/display_vu.h) - added deepsleep capability for LCD_I2C and OLED displays - in this connection, a full update with Sketch data upload is required -- in this connection, example of plugi deepsleep.ino (exsamples/plugins/deepsleep.ino) have been updated +- in this connection, example of plugin deepsleep.ino (examples/plugins/deepsleep.ino) have been updated - some bug fixes #### v0.7.355 - updating libraries ESP32-audioI2S and ESP32-vs1053_ext to the latest version - optimization of the web interface during playback - fixed one js bug. a [full update](#update-over-web-interface) with Sketch data upload is desirable -- plugin example for esp deep sleep when playback is stopped (exsamples/plugins/deepsleep.ino) +- plugin example for esp deep sleep when playback is stopped (examples/plugins/deepsleep.ino) #### v0.7.330 **!!! a [full update](#update-over-web-interface) with Sketch data upload is required. After updating please press CTRL+F5 in browser !!!** \ **Please backup playlist.csv and wifi.csv before updating.** - added the ability to configure parameters through the [web interface](images/settings.png) -- new parameter BRIGHTNESS_PIN - pin for adjusting the brightness of the display. Details in [exsamples/myoptions.h](exsamples/myoptions.h#L105) +- new parameter BRIGHTNESS_PIN - pin for adjusting the brightness of the display. Details in [examples/myoptions.h](examples/myoptions.h#L105) - the weather plugin is integrated into the code, the settings are made through the web interface _**PS:** Due to the change in the storage location of settings in the ESP memory, settings such as:_ \ @@ -396,9 +401,9 @@ _will have to be configured again through the web interface. Please understand a #### v0.6.494 - adding VU meter for displays ST7735 160x128, ST7735 128x128, ILI9341 320x240, ST7789 320x240 \ - option ENABLE_VU_METER (see [myoptions.h](exsamples/myoptions.h) for exsample) \ + option ENABLE_VU_METER (see [myoptions.h](examples/myoptions.h) for example) \ **!!! Important !!!** \ - if you enable this feathure on the esp32 wroom, due to lack of memory, you must modify the file Arduino/libraries/AsyncTCP/src/AsyncTCP.cpp \ + if you enable this feature on the esp32 wroom, due to lack of memory, you must modify the file Arduino/libraries/AsyncTCP/src/AsyncTCP.cpp \ **replace the line 221** \ _xTaskCreateUniversal(_async_service_task, "async_tcp", 8192 * 2, NULL, 3, &_async_service_task_handle, CONFIG_ASYNC_TCP_RUNNING_CORE);_ \ **with** \ @@ -435,9 +440,9 @@ _will have to be configured again through the web interface. Please understand a #### v0.6.344 - fixed SPI-display bugs when used with VS1053B module -- added example plugin for analog volume control ([exsamples/plugins/analogvolume.ino](exsamples/plugins/analogvolume.ino)) -- added example plugin for backlight control depending on playback ([exsamples/plugins/backlightcontrols.ino](exsamples/plugins/backlightcontrols.ino)) -- added example plugin for replase a RSSI to bitrate information alternately ([exsamples/plugins/rssibitrate.ino](exsamples/plugins/rssibitrate.ino)) +- added example plugin for analog volume control ([examples/plugins/analogvolume.ino](examples/plugins/analogvolume.ino)) +- added example plugin for backlight control depending on playback ([examples/plugins/backlightcontrols.ino](examples/plugins/backlightcontrols.ino)) +- added example plugin for replace a RSSI to bitrate information alternately ([examples/plugins/rssibitrate.ino](examples/plugins/rssibitrate.ino)) #### v0.6.320 - fixed ILI9225 display bug when used with VS1053B module @@ -445,9 +450,9 @@ _will have to be configured again through the web interface. Please understand a #### v0.6.313 - added support for ILI9225 220x176 SPI displays -- added support for I2S internal DAC, option I2S_INTERNAL (see [myoptions.h](exsamples/myoptions.h#L111) for exsample) \ +- added support for I2S internal DAC, option I2S_INTERNAL (see [myoptions.h](examples/myoptions.h#L111) for example) \ _(this option worked only with esp32 core version==2.0.0)_ -- new option SOFT_AP_REBOOT_DELAY (see [myoptions.h](exsamples/myoptions.h) for exsample) +- new option SOFT_AP_REBOOT_DELAY (see [myoptions.h](examples/myoptions.h) for example) - fixed MQTT connection when WiFi reconnected - fixed date display for ILI9341 displays - fixed garbage on volume control with displays ILI9341 @@ -455,7 +460,7 @@ _will have to be configured again through the web interface. Please understand a #### v0.6.290 - fixed interface blocking error when synchronizing time - time sync optimization -- new option **SNTP_SERVER**, to set your custom server for synchronization (see [myoptions.h](exsamples/myoptions.h) for exsample) +- new option **SNTP_SERVER**, to set your custom server for synchronization (see [myoptions.h](examples/myoptions.h) for example) #### v0.6.278 - added support for LCD2004 displays @@ -467,7 +472,7 @@ _will have to be configured again through the web interface. Please understand a #### v0.6.262 - change encoder library to [ai-esp32-rotary-encoder](https://github.com/igorantolic/ai-esp32-rotary-encoder) (injected to project) -- added new option VOL_ACCELERATION - volume adjustment acceleration by encoder (see [myoptions.h](exsamples/myoptions.h) for exsample) +- added new option VOL_ACCELERATION - volume adjustment acceleration by encoder (see [myoptions.h](examples/myoptions.h) for example) - fixed connection error with http-stations on esp32-core v2.0.3 - fixed css errors (a [full update](#update-over-web-interface) is required) @@ -489,14 +494,14 @@ _will have to be configured again through the web interface. Please understand a #### v0.6.202 - fixed errors in the operation of the second encoder -- rewrote [plugin example](exsamples/plugins/displayhandlers.ino) +- rewrote [plugin example](examples/plugins/displayhandlers.ino) - fixed compilation errors on macOS #2 #### v0.6.200 - please backup your playlist and wifi settings before updating (export) - accelerated displays up to ~30fps (everything except LCD) - corrections/additions in the WEB interface (a [full update](#update) is required) -- rewrote [plugin example](exsamples/plugins/displayhandlers.ino) +- rewrote [plugin example](examples/plugins/displayhandlers.ino) - fixed compilation errors on macOS - changed the logic of the second encoder (switching to the volume control mode by double click) - optimization, bug fixes @@ -581,7 +586,7 @@ _will have to be configured again through the web interface. Please understand a #### v0.4.292 - added support for IR control - new options in options.h (ENC_INTERNALPULLUP, ENC_HALFQUARD, BTN_INTERNALPULLUP, VOL_STEP) _//Thanks for [Buska1968](https://4pda.to/forum/index.php?s=&showtopic=1010378&view=findpost&p=113385448)_ -- сompilation error for module SSD1306 with arduino-esp32 version newest than 2.0.0 +- compilation error for module SSD1306 with arduino-esp32 version newest than 2.0.0 - fix compiler warnings in options.h - fix some compiler warnings diff --git a/exsamples/mqttoptions.h b/examples/mqttoptions.h similarity index 100% rename from exsamples/mqttoptions.h rename to examples/mqttoptions.h diff --git a/exsamples/myoptions.h b/examples/myoptions.h similarity index 98% rename from exsamples/myoptions.h rename to examples/myoptions.h index 47107ff..ca85487 100644 --- a/exsamples/myoptions.h +++ b/examples/myoptions.h @@ -150,13 +150,13 @@ The connection tables are located here https://github.com/e2002/yoradio#connecti //#define WAKE_PIN 255 /* Wake Pin (for manual wakeup from sleep mode. can match with BTN_XXXX, ENC_BTNB, ENC2_BTNB. must be one of: 0,2,4,12,13,14,15,25,26,27,32,33,34,35,36,39) */ /* For sample #define ENC_BTNB 36 - next line - #define WAKE_PIN ENC_BTNB */ //#define LIGHT_SENSOR 255 /* Light sensor */ -//#define AUTOBACKLIGHT(x) *function* /* Autobacklight function. See options.h for exsample */ +//#define AUTOBACKLIGHT(x) *function* /* Autobacklight function. See options.h for example */ //#define DSP_INVERT_TITLE true /* Invert title colors for OLED displays ? */ /******************************************/ /* IR control */ //#define IR_PIN 255 -//#define IR_TIMEOUT 80 /* see kTimeout description in IRremoteESP8266 exsample https://github.com/crankyoldgit/IRremoteESP8266/blob/master/examples/IRrecvDumpV2/IRrecvDumpV2.ino */ +//#define IR_TIMEOUT 80 /* see kTimeout description in IRremoteESP8266 example https://github.com/crankyoldgit/IRremoteESP8266/blob/master/examples/IRrecvDumpV2/IRrecvDumpV2.ino */ /******************************************/ diff --git a/exsamples/mytheme.h b/examples/mytheme.h similarity index 100% rename from exsamples/mytheme.h rename to examples/mytheme.h diff --git a/exsamples/plugins/backlightcontrols.ino b/examples/plugins/backlightcontrols.ino similarity index 100% rename from exsamples/plugins/backlightcontrols.ino rename to examples/plugins/backlightcontrols.ino diff --git a/exsamples/plugins/deepsleep.ino b/examples/plugins/deepsleep.ino similarity index 100% rename from exsamples/plugins/deepsleep.ino rename to examples/plugins/deepsleep.ino diff --git a/yoRadio/src/audioVS1053/audioVS1053Ex.cpp b/yoRadio/src/audioVS1053/audioVS1053Ex.cpp index 873bbff..9697f3f 100644 --- a/yoRadio/src/audioVS1053/audioVS1053Ex.cpp +++ b/yoRadio/src/audioVS1053/audioVS1053Ex.cpp @@ -853,7 +853,7 @@ void Audio::processWebStream(){ if(psramFound()) if(bytesCanBeWritten > 4096) bytesCanBeWritten = 4096; // PSRAM throttle - if(m_f_webfile){ + if(m_streamType == ST_WEBFILE){ // normally there is nothing to do here, if byteCounter == contentLength // then the file is completely read, but: // m4a files can have more data (e.g. pictures ..) after the audio Block @@ -864,7 +864,7 @@ void Audio::processWebStream(){ bytesAddedToBuffer = _client->read(InBuff.getWritePtr(), bytesCanBeWritten); if(bytesAddedToBuffer > 0) { - if(m_f_webfile) byteCounter += bytesAddedToBuffer; // Pull request #42 + if(m_streamType == ST_WEBFILE) byteCounter += bytesAddedToBuffer; // Pull request #42 if(!m_f_swm) metacount -= bytesAddedToBuffer; if(m_f_chunked) m_chunkcount -= bytesAddedToBuffer; InBuff.bytesWritten(bytesAddedToBuffer); @@ -881,7 +881,7 @@ void Audio::processWebStream(){ } // // if we have a webfile, read the file header first - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - if(m_f_webfile && m_controlCounter != 100){ + if(m_streamType == ST_WEBFILE && m_controlCounter != 100){ if(InBuff.bufferFilled() < maxFrameSize) return; if(m_codec == CODEC_WAV){ m_controlCounter = 100; @@ -912,7 +912,7 @@ void Audio::processWebStream(){ } // have we reached the end of the webfile? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - if(m_f_webfile && byteCounter == m_contentlength){ + if(m_streamType == ST_WEBFILE && byteCounter == m_contentlength){ while(InBuff.bufferFilled() > 0){ if(InBuff.bufferFilled() == 128){ // post tag? if(indexOf((const char*)InBuff.getReadPtr(), "TAG", 0) == 0){ diff --git a/yoRadio/src/core/mqtt.h b/yoRadio/src/core/mqtt.h index bb6c2c6..074da59 100644 --- a/yoRadio/src/core/mqtt.h +++ b/yoRadio/src/core/mqtt.h @@ -1,8 +1,9 @@ #ifndef mqtt_h #define mqtt_h - -#if __has_include("../../mqttoptions.h") -#include "../../mqttoptions.h" +#include "options.h" +#ifdef MQTT_ROOT_TOPIC +//#if __has_include("../../mqttoptions.h") +//#include "../../mqttoptions.h" #include "../async-mqtt-client/AsyncMqttClient.h" @@ -15,7 +16,7 @@ void mqttPublishStatus(); void mqttPublishPlaylist(); void mqttPublishVolume(); -#endif // if __has_include("mqttoptions.h") +#endif // #ifdef MQTT_ROOT_TOPIC #endif diff --git a/yoRadio/src/core/options.h b/yoRadio/src/core/options.h index e10d377..19dbc89 100644 --- a/yoRadio/src/core/options.h +++ b/yoRadio/src/core/options.h @@ -1,7 +1,7 @@ #ifndef options_h #define options_h -#define YOVERSION "0.8.950" +#define YOVERSION "0.8.962" /******************************************************* DO NOT EDIT THIS FILE. @@ -15,7 +15,9 @@ STORE YOUR SETTINGS IN THE *** myoptions.h *** FILE. #if __has_include("../../mytheme.h") #include "../../mytheme.h" /* <- Theme file */ #endif - +#if __has_include("../../mqttoptions.h") + #include "../../mqttoptions.h" +#endif /******************************************************* The connection tables are located here https://github.com/e2002/yoradio#connection-tables diff --git a/yoRadio/src/core/player.cpp b/yoRadio/src/core/player.cpp index b6f8483..a41dd2d 100644 --- a/yoRadio/src/core/player.cpp +++ b/yoRadio/src/core/player.cpp @@ -181,7 +181,7 @@ void Player::browseUrl(){ config.setDspOn(1); resumeAfterUrl = mode==PLAYING; display.putRequest(PSTOP); - setDefaults(); +// setDefaults(); setOutputPins(false); config.setTitle(const_PlConnect); netserver.requestOnChange(TITLE, 0);