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 - lennevia

Pages: 1 ... 8 9 10 11 12 ... 30
136
https://learn.tinycircuits.com/Kits/TSV-Converter-Tutorial/

The format is custom. TSV stands for tiny screen video.

137
General Discussion / Re: Newbie/GPS questions
« on: February 17, 2022, 02:36:41 PM »
Ours GPS Tracker project isn't able to communicate real time results. As you have seen, you can access the data after the fact which might not be ideal for tracking a falcon.

The hornet GPS component you mentioned would need a board built around it to connect with other electronic components from what I'm able to understand from their website. If you have more information on how the chip is applied to products, I'd be happy to read through them.

A few years ago, we did prototype a GPS bird board with solar panels for recharging and some other useful sensors to assist an Oklahoma college, but it's a pretty involved project that would involve a lot of software time. It's on pause until we can get a grant for funding, or work with a University or some team to collaborate with us.

Cheers,
Réna

138
Thumby / Re: Unable to connect to Thumby
« on: February 17, 2022, 01:21:18 PM »
Yes, you definitely had the test code. Sorry about that. I'm glad you were able to sort it out and get the updated software from the IDE.

139
Hi there,

The .tsv format is the only format that will play on our TVs due to their programming.

You can convert mp4 to tsv using the converter, but the TV's will not play mp4 videos innately. The converter is built around ffmpeg. You could use a different tool and formatting if that's what is preferable, but you would be responsible for the programming.

Cheers,
Réna

140
TinyTV & Tiny Video Player / Re: SD Card not Showing UP
« on: February 14, 2022, 11:50:50 AM »
Hi there,

Yes, you will need to plug the SD Card into your computer directly. The kit comes with an SD card adapter that you should be able to use with your computer. If you do not have an SD Card port on your PC, you will need to get an adapter to do so.

Cheers,
Réna

141
TinyTV & Tiny Video Player / Re: Tiny TV Stuck
« on: February 14, 2022, 11:42:01 AM »
When you try the original example videos - are you removing all of the videos you put on the SD Card? The TV will play videos in the order they are added to the SD Card.

Can you send a video of the behavior you are seeing? It's possible that the hardware isn't plugged in completely. I would recommend removing the SD Card, opening the back of the TV, and re-assembling the hardware in the TV to ensure the connection between the TinyScreen+ and the SD & Audio TinyShield is complete.

The settings menu is the best way to set the TinyTV back to default settings, but you could also try re-uploading the program by following these tutorials:
https://learn.tinycircuits.com/Processors/TinyScreen+_Setup_Tutorial/
https://learn.tinycircuits.com/Kits/Tiny-Video-Program/

Let me know if that works for you!

142
TinyTV & Tiny Video Player / Re: Tiny TV Stuck
« on: February 11, 2022, 06:18:41 PM »
Hi there,

Can you attach one of the erring videos?

If there are special characters, or if the title is longer than 50 characters, the videos will not play from the SD Card. More details on the FAQ: https://learn.tinycircuits.com/Kits/TinyTV-FAQ/#videos-not-playing

Do the mp4 videos work when you play them on your computer before you converted them?

Best,
Réna

143
TinyDuino Processors & TinyShields / Re: LED Matrix led datasheet
« on: February 11, 2022, 11:21:24 AM »
Hiya,

The LEDs we use are size 0402 and are color variants of this type of LED: APHHS1005SURCK by Kingbright

Here's one of their datasheets: https://www.kingbrightusa.com/images/catalog/SPEC/APHHS1005SURCK.pdf

Cheers,
Réna

144
I think the best way to find out what works for you is to test the best and worst resolutions. The videos you convert get resized for a 0.96" screen either way.

The possibly important difference if you are adding a lot of different videos to your TV is that the lower resolution video would take up less space on the SD Card.

Cheers,
Réna

145
TinyTV & Tiny Video Player / Re: SD card is write protected...?
« on: February 04, 2022, 05:08:01 PM »
Hi there,

Did you put any tsv videos on the formatted 32gb card when you tested it?

What operating system are you using (MacOS, Windows)? Can you share a screenshot of the exact error message? Do you have an SD Card adapter between your computer and the SD card?

Thanks!
Réna

146
Wirelings / Re: Audio Amplifier Wireling
« on: February 02, 2022, 02:07:00 PM »
You should not be selecting TinyZero or WirelingZero as the target since those are different boards with different hardware. I recommend refreshing on the programming process for the TinyDuino. Here's the getting started tutorial: https://learn.tinycircuits.com/Processors/TinyDuino_Setup_Tutorial/

I don't believe the hardware from the Kickstarter has changed drastically, but if you are still encountering issues after getting the right Tools selections set up for programming, let me know!

147
Wirelings / Re: Audio Amplifier Wireling
« on: January 31, 2022, 12:28:06 PM »

148
General Discussion / Re: Newbie!
« on: January 28, 2022, 03:17:26 PM »
Hiya there,

The RC aircraft project involves some extra hardware in addition to the processor. Such as the LEDs and resistors.

The processor boards (Arduino Uno and TinyLily) use the same processor chip (ATmega328p), but the way these two boards are programmed is different. If you want to produce the same project without making any software/code changes, I would recommend buying the exact hardware used in the project, as well as some soldering tools. Otherwise, I recommend learning more about programming to adapt the code to your processor and hardware on hand. Arduino has some great getting started tutorials that I would highly recommend, search for tutorials here: https://docs.arduino.cc/tutorials/

Cheers,
Réna


149
Wirelings / Re: RobotZero and stepper
« on: January 28, 2022, 02:57:03 PM »
You do definitely need the battery to be plugged in. Do the steppers not work with the battery plugged in?

I attached the code I had working yesterday to this message.

150
Wirelings / Re: RobotZero and stepper
« on: January 27, 2022, 07:24:05 PM »
After looking further into the code and previous revisions of the board, and being admittedly confused for a bit, I have a solution for you! So there are two main points.

1. Rev3 boards have the silkscreen swapped around, so Motor 1 is 2, and Motor 2 is 1. This is a little confusing, but you could make a more readable code fix using:

int motor1 = 2;
int motor2 = 1;


or you could directly change the pins in stepper.ino:

const int stepPin1 = 45; // this fix only works when using stepper motors, dc motors would require a different fix
const int dirPin1 = 30;
const int stepPin2 = 44;
const int dirPin2 = 27;


2. Both motors must be enabled for either to work and in this same vein of thought - you must send commands to both motors as well. You can set the 2nd motor speed to 0, but you do need to send something for motor 1 to move. These extra commands sending the stepSpeed to the second motor won't use any noticeable amount of power.

I hope that helps! We need to update our stepper.ino library and add some documentation on both of these points, so thank you for bringing this issue to our attentions.

Cheers,
Réna



Pages: 1 ... 8 9 10 11 12 ... 30
SMF spam blocked by CleanTalk