Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - knoptop

Pages: 1
1
User Projects / Code Examples / Re: TinyTV double digits channel numbers
« on: January 25, 2023, 09:09:37 PM »
I'm new to all this stuff, but I have Arduino IDE and wanted to customize the TinyTV code
but I'm already stuck with it asking what board I have.. and I can't find any details of the exact board for the TinyTV.



I got it working. Woohoo. I figured iit out myself.

Heres the code

void showChannelNumber() {
  char channelString[] = "00";
  if(currentFileNum>9){
     channelString[0]+= currentFileNum/10;
  }
  channelString[1] += (currentFileNum % 10);
  int yOffset = 50;
  int xPosition = 80;
  int xWidth = display.getPrintWidth(channelString);


This fix was to use my previous changes and also uncomment the forward slashes /

2
TinyTV & Tiny Video Player / Re: Trouble shooting
« on: January 25, 2023, 07:43:20 PM »
I recently purchased my TinyTV and experienced this issue with my first time trying to play my videos.
I went through the steps listed on the mentioned link and found a "hidden file" (in my case it was just a file folder named 'fseventsd'.
Deleting it hasn't fixed the issue for me.
I was curious if there is another way to handle this? I'm not familiar with Terminal commands and was hoping not to have to download more software to 'clean' the sd card from files. I'm on a Mac running Ventura 13.0.1

Pages: 1
SMF spam blocked by CleanTalk