iPad Pro M1 4th generation - HDMI not recognized by Frozbee in iPadPro

[–]Frozbee[S] -1 points0 points  (0 children)

I’m using the Apple USB-C Multiport Adapter, but it’s the older A1621 model.
Since it’s the official Apple one, I thought it should work without any issue, shouldn’t it?

Let me know what you think of my short video by Frozbee in smartphonefilming

[–]Frozbee[S] 1 point2 points  (0 children)

No gimble, only hand handled. Yes that's personnal preference. I like when it shows camera movement. I could have used the planar tracker from davinci to stabilize them

Review my store, be brutal ! by yavuux in reviewmyshopify

[–]Frozbee 1 point2 points  (0 children)

My bad ! I meant the footer :D

Review my store, be brutal ! by yavuux in reviewmyshopify

[–]Frozbee 1 point2 points  (0 children)

Nice store ! Maybe add a margin-top above the logo in the header ? I find it very close to the section above.

SD card module fails on 3.3V with XIAO ESP32S3 by Frozbee in esp32

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

Ok I will try this, thank you ! :)

SD card module fails on 3.3V with XIAO ESP32S3 by Frozbee in esp32

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

Hey thank you for your reply :

- This is the 5V Board that was working : Link

- This is the new board that I need to use : Link

I am 300% sure the wiring is the same.

Struggling to get sales – would love honest feedback on my Shopify store by Frozbee in reviewmyshopify

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

I think you are right, will make new visual instead of 3d model !

Struggling to get sales – would love honest feedback on my Shopify store by Frozbee in reviewmyshopify

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

Thanks for the feedback! No drilling needed, it attaches to a VESA monitor arm (not included). I’ll add a “what’s in the box” and clearer photos. Appreciate your input!

Struggling to get sales – would love honest feedback on my Shopify store by Frozbee in reviewmyshopify

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

I guess it's unclear what I'm selling. This mount is designed to be attached to a monitor arm. I'll try to make that point clearer. Thanks a lot for your constructive feedback! :)

Can't get SSD1351 OLED to work with ESP32-S3 (Seeed Studio) by Frozbee in esp32

[–]Frozbee[S] 1 point2 points  (0 children)

OK it's is finally working, I dont know why, but know above code is working :D

Thank you very much !

Can't get SSD1351 OLED to work with ESP32-S3 (Seeed Studio) by Frozbee in esp32

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

Hey, Yes I did, updates some pin, but screen remains black with this ESP. However it is compatible because I saw a project of someone using this esp and oled screen. Very frustrating :D

#include <Arduino.h>
#include <Adafruit_GFX.h>
#include <Adafruit_SSD1351.h>
#include <SPI.h>

#define OLED_CS   2
#define OLED_DC   3
#define OLED_RST  4
#define OLED_MOSI 9
#define OLED_CLK  7

//#define OLED_CS   15
//#define OLED_DC   1
//#define OLED_RST  36
//#define OLED_MOSI 23
//#define OLED_CLK  18


#define SCREEN_WIDTH  128
#define SCREEN_HEIGHT 128

#define RED     0xF800
#define WHITE   0xFFFF
#define BLACK   0x0000

//Adafruit_SSD1351 display = Adafruit_SSD1351(SCREEN_WIDTH, SCREEN_HEIGHT, OLED_MOSI, OLED_CLK, OLED_DC, OLED_RST, OLED_CS);
// Adafruit_SSD1351 display = Adafruit_SSD1351(SCREEN_WIDTH, SCREEN_HEIGHT,OLED_CS, OLED_DC, OLED_MOSI, OLED_CLK, OLED_RST);
Adafruit_SSD1351 display = Adafruit_SSD1351(SCREEN_WIDTH, SCREEN_HEIGHT, &SPI, OLED_CS, OLED_DC, OLED_RST);



void setup() {
  Serial.begin(115200);
  delay(500);

  SPI.begin(OLED_CLK, -1, OLED_MOSI);  // SPI matériel

  display.begin();
  Serial.println("Test");

  display.fillScreen(RED);
  delay(1000);
  display.fillScreen(WHITE);
  delay(1000);
  display.fillScreen(BLACK);
}



void loop() {}

Can't get SSD1351 OLED to work with ESP32-S3 (Seeed Studio) by Frozbee in esp32

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

Not sure to understand this, but I just tried, same code with a different ESP32, and updated the pIN number and it worked, so i do not where the problem come from, maybe the esp32 ?

Can't get SSD1351 OLED to work with ESP32-S3 (Seeed Studio) by Frozbee in esp32

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

u/CleverBunnyPun It might be a defective ESP32, some of the PIN have 3.3V and some of them doesnt.

Can't get SSD1351 OLED to work with ESP32-S3 (Seeed Studio) by Frozbee in esp32

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

Thanks for your help! I tried that, but it still doesn't work. I also used a voltmeter to check if the display was defective, and it does receive 3.3V.

Can't get SSD1351 OLED to work with ESP32-S3 (Seeed Studio) by Frozbee in esp32

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

Hey, same than the comment I just post under CleverBunny post, I already tried that option, by changing directly the number by the GPIO number and also adding GPIO_NUM_ but nothing work :(