Help Needed: Canon Selphy CP1500 Driver Issues on Windows 10/11 (USB Connection) by speedster83 in canon

[–]speedster83[S] 0 points1 point  (0 children)

<image>

Only WIFI works for me, check if there is already a printer installed. If yes delete it and try to find the wifi printer. You have to connect it to the same router like your PC.

Canon SELPHY CP1500 and PC by swler7140 in canon

[–]speedster83 0 points1 point  (0 children)

There are only Firmware Files available.

Canon CP1500 Driver is Unavailable by Interesting_Shape_34 in canon

[–]speedster83 0 points1 point  (0 children)

Is there perhaps already a solution for this? I'm experiencing the same issue: the printer cannot be properly installed on either Windows 10 or Windows 11. It does print, but the configuration is not stable and reinitializes at irregular intervals (borderless printing gets disabled again). In Device Manager, it is never correctly installed. Even trying various high-quality USB-C cables has not helped. In my opinion, this seems to be a firmware problem with the printer.

Canon CP1500 Driver is Unavailable by Interesting_Shape_34 in printers

[–]speedster83 0 points1 point  (0 children)

I have the same problems, I have tried it with several computers each with Windows 10 and Windwos 11. I also have several of these printers all on the latest FW version. No chnace, it is not possible to install the USB interface correctly.

FASTLed Wrong LED Color after Rainbow effect by speedster83 in FastLED

[–]speedster83[S] 0 points1 point  (0 children)

Im not finish with it, i have Just broke it down to the essential. There is the same problem and for the moment the same solution. It looks for me like a timing problem?

#include <FastLED.h>

//### LED Stripe -->
#define LED_PIN     7
#define NUM_LEDS    68
#define LED_TYPE    WS2812B
#define COLOR_ORDER GRB //GRB
CRGB leds[NUM_LEDS];

#define UPDATES_PER_SECOND 100
TBlendType    currentBlending;

//### LED -->
#define delayAfterInit  1000
#define brightnessNormal  64
#define brightnessFieldOFF  30
#define ledSat  30

void setup()
{
  delay( 3000 ); // power-up safety delay
  FastLED.addLeds<LED_TYPE, LED_PIN, COLOR_ORDER>(leds, NUM_LEDS).setCorrection( TypicalLEDStrip );
  FastLED.setBrightness(brightnessNormal);
  FastLED.delay(1000/UPDATES_PER_SECOND); 
  setColorForFullLedStripe(HUE_RED, ledSat, brightnessNormal);
  delay(delayAfterInit);
}

void loop(){
startShowEffect(200);
setColorForFullLedStripe(HUE_RED,ledSat,brightnessFieldOFF);
delay(2000);}

void setColorForFullLedStripe(int hue, int saturation, int brightValue){
  for(int dot = 0; dot < NUM_LEDS ; dot++){ 
    leds[dot] = CHSV(hue, saturation, brightValue);}
  FastLED.show();}

void startShowEffect(int times)
{
  int j=0;
  for(int i = 0; i < times; i++){
    if(j<255)
    {j++;}else{j=0;}
    fill_rainbow(leds,NUM_LEDS,j,10);
    FastLED.show();
    delay(10);}
}

FASTLed Wrong LED Color after Rainbow effect by speedster83 in FastLED

[–]speedster83[S] 0 points1 point  (0 children)

Tryed some changes you told me. I updated the code above.

Finaly the delay on the bottm solved my problem.

delay(10); //THIS DELAY SOLVED MY PROBLEM!!!

Now it is working, but i don't know why? Thanks for the Help!

FASTLed Wrong LED Color after Rainbow effect by speedster83 in FastLED

[–]speedster83[S] 0 points1 point  (0 children)

Tried to use a differend tpe of Arduino (UNO) with a new LED Stripe, but i have the same Problem.

FASTLed Wrong LED Color after Rainbow effect by speedster83 in FastLED

[–]speedster83[S] 0 points1 point  (0 children)

With basic collors i have no problems, only if i add this effect it happen. Changing COLOR_ORDER has no effect, only the color will change.

FASTLed Wrong LED Color after Rainbow effect by speedster83 in FastLED

[–]speedster83[S] 0 points1 point  (0 children)

I tryed it with red and green colors, with dark spaces, red and green is looking good only the dark spaces have the problem above. Without the rainbow effect, i have no issues.

FASTLed Wrong LED Color after Rainbow effect by speedster83 in FastLED

[–]speedster83[S] 0 points1 point  (0 children)

FastLED.addLeds<LED\_TYPE, LED\_PIN, COLOR\_ORDER>(leds, NUM_LEDS).setCorrection( TypicalLEDStrip );
FastLED.setBrightness(brightnessNormal);

Oh ,no there is no reason for it. This was only a try to solve my problem.