Search results

  1. P

    Display screen for WiiM pro

    No worries. The yellow screen is a start. :) It's the default blank/clear screen by the application. Looks like there are issues communicating to your Wiim. Is the Wiim in the same network? Is it 'on'? It must be on + findable in network. I always put it on + playing some music while debugging...
  2. P

    Display screen for WiiM pro

    Looks like RGB format is correct. So RGBA with 888. This fits in how Images are generated in the python code. If you still get the 'seek error: [Errno 28] No space left on device' error then this is because the framebuffer (fb var) addressed is out of bounds. And that is quite logical since...
  3. P

    Display screen for WiiM pro

    Now behind a computer helps me more understanding your setup :). The 'official' Rpi 7" display has indeed other specs than the WS 7" display. So the 'fbset' should help understanding current settings/config of the display. There are also options to changing the resolution/config of the display...
  4. P

    Display screen for WiiM pro

    Sorry my mistake. it must be the ‘fbset’ cmd
  5. P

    Display screen for WiiM pro

    Ok. I've used the bullseye release on the raspberry pi. With the Waveshare 7 inch LCD (touch) display via HDMI. Hardware specs should be the same. Things can be different though regarding to Rpi OS install + config.txt setup. But that error msg you've got ('no space on device') was the same...
  6. P

    Display screen for WiiM pro

    The 'no space left on device' is probably due to the 1024x600 with linelength of 2048. When using 'fbdev -i' command you get the screen details + linelength info. To fix this you need to modify the fb.seek and fb.write command. Every '4 *' need to be replace with '2 *'. After that if your...
  7. P

    Display screen for WiiM pro

    I got: await async_ssdp_search( search_target=udn, source=source, target=target, timeout=timeout, async_callback=on_response, ) where 'udn' is my wiim id (uuid)
  8. P

    Display screen for WiiM pro

    Try replacing parameter name 'service-type' with 'search_target'
  9. P

    Anyone successfully added a display with their Wiim?

    Got this working retired-guy on a Rpi (bullseye) with a Waveshare 7 inch LCD.
  10. P

    Display screen for WiiM pro

    Last weekend I got the project of retired-guy running. A bit of a steep learning curve for me on image processing + as Python noob. Got it working with a Wiim Mini + 7-inch Waveshare display ("1024x600"; rgba565 mode) running on a RPi B model (bullseye). Now it's working I gonna port the setup...
Back
Top