u/betolley

Experience with R1 and Made some custom apps

I have been happy with the R1 so far. I wanted to note some things to see if I am wrong?

  1. Be careful with your 3 free questions from the intern. Be more careful with the question. You can only ask and can't give more details without using more tasks.

  2. Creations are just websites. You can't save them and use them later. You have to be actively online.

  3. You can make your own creations but they will not save anything on the device. Things have to save to a server by the creator of the creation. I used Gemini when I ran out of intern questions and was able to create a couple other creations and used github to host them.

https://github.com/betolley/Rabbit_R1/tree/main

I was able to create a really cool calorie counter that I was hoping would save files locally but I don't think you can. But it still works well you can say I had A McDonald's Mcdouble for lunch and it will look up the calories and put it with the macros.

  1. Play with https://hole.rabbit.tech/rabbitos DLAM is neat. I don't know will it remain free?
github.com
u/betolley — 3 days ago

Creations

How do creations work? Do they have to utilize a proxy? I had the interm create a web browser but everything I try to access says that it can't be accessed and give me a little android.

reddit.com
u/betolley — 9 days ago
▲ 14 r/esp32

Tft Shield

’m trying to get this ESP 32 to connect to this display. I have it set up to connect via parallel using.tft_spi. I can compile and run the code but absolutely nothing shows up but a white back light screen. I did try MCUfriend and it did the same thing when I tried to do auto detect. It did detect that there was a screen connected to it. Ili 9486. Is there something obvious I’m missing? I’ve tried to ESP 32s that were different versions and they both did the same thing. I even got to the point of running it with a multimeter attached to make sure that the right pins were turning on and there was voltage spikes on the pins I was expecting. I’ve been looking at this for over a week. I feel like I’m missing something stupid. Any help would be appreciated. Here is my special: #define ILI9486_DRIVER
#define ESP32_PARALLEL
#define TFT_PARALLEL_8_BIT

#define TFT_WIDTH 320
#define TFT_HEIGHT 480
#define TFT_RGB_ORDER TFT_BGR

// --- Control Pins ---
// Note: These
#define TFT_CS 33 //
#define TFT_DC 15 // (LCD_RS)
#define TFT_RST 32 // Pin labeled
#define TFT_WR 4 // Pin labeled
#define TFT_RD 2 // Pin labeled

// --- Data Bus Pins D0 - D7 ---
// These are chosen based on the digital header availability on your board
#define TFT_D0 12 // Labeled IO12
#define TFT_D1 13 // Labeled IO
#define TFT_D2 26 // Labeled IO
#define TFT_D3 25 // Labeled IO
#define TFT_D4 17 // Labeled IO
#define TFT_D5 16 // Labeled IO
#define TFT_D6 27 // Labeled IO
#define TFT_D7 14 // Labeled IO

// --- Font Loading ---
#define LOAD_GLCD
#define LOAD_FONT2
#define LOAD_FONT4
#define LOAD_FONT6
#define LOAD_FONT7
#define LOAD_FONT8
#define LOAD_GFXFF
#define SMOOTH_FONT

#define SPI_FREQUENCY 27000000k

u/betolley — 2 months ago