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 2 3 4 5 6 ... 30
46
Hi there,

You can try electrical tape, but if the connection is not strong enough, the speaker will not produce audio.

the best way to fix the speaker would be by soldering the wire back to the metal pad on the speaker - again, this might work with tape but you would have to handle the TV delicately afterwards.

We also sell the speakers separately on our website if you were interested in a replacement: https://tinycircuits.com/collections/accessories-add-ons/products/16_9_speaker

Let me know if you have any other questions!

Cheers,
Réna

47
Wow! It's Poltergeist! It's definitely coming together.

48
Wow it already looks so good! 100% cozy vibes

49
That's great! Would love to see the final build once you're ready to share!

50
Not dumb questions at all! Ask as many questions (or for details/recommendations) as you like so you can feel comfortable working on your project.

For the proto board: yes, you would solder wires directly to where you want to make connections. If you are worried about spacing, I would suggest buying two proto TinyShields with the connectors on both sides so that the wired connections can fit between two proto boards since there isn't much space for extra wires right up against the TinyScreen+ or SD Audio TinyShield

To keep connection steady, I might also suggest a mounting kit that comes with spacers: https://tinycircuits.com/collections/accessories-add-ons/products/tinyduino-mounting-kit


51
TinyTV & Tiny Video Player / Re: Mute doesn't mute (just reallllly quiet)
« on: December 15, 2022, 04:35:28 PM »
Andy,

Due to the limitations of the TV, the mute functionality does not fully mute the TV audio. It instead brings it to the lowest volume. If you would like to convert videos without audio, the TinyTV Converter app is able to convert .tsv videos without audio (this is due to a current bug, but it will suit the purpose): https://learn.tinycircuits.com/Kits/TinyTV-Converter-App/
 
You can also try editing the source mp4/mov video to lower the volume or erase it before conversion to make the mute audio less noticeable. You can also disconnect the tiny speaker.


Cheers,
Réna

52
TinyTV & Tiny Video Player / Re: no sound after conversion
« on: December 15, 2022, 12:51:29 PM »
Hi there,

The newest version of the app will only convert the video portion of files for .tsv - so the audio will not convert with the new app until a future update.

For now, the TSV Converter is the best tool for converting videos - it has issues with some versions of MacOS, but works reliably on Windows computers if you have one available to you. If you need a video converted, you can get in touch with us here and we can convert it for you:  https://tinycircuits.com/pages/contact-us

Cheers,
Réna

53
Hi there,

Yes, it's possible. The best way to accomplish your goal is to solder buttons separately to a proto TinyShield and then change the pins in the software. I helped someone do this over email previously so I'll copy over the helpful parts: - including some text on the two classic types of buttons:

A momentary button can work :
-   Normally off: With the normally-off switch, there's no connection till you push the button. Most push button switches are used this way. Examples include doorbell buttons, cell phone keys and garage door openers.
-   Normally on: Here the switch conducts normally, but interrupts the circuit when you press on it. This is more specialized, and may be used in conjunction with a wiring trick. For example, connecting a normally-on switch in parallel with a light bulb will light the bulb when the button's pushed; otherwise, current will flow through the switch, leaving the bulb off.

For the typical type of button, normally off, or a push-to-make, button, it should work to connect one lead to GND and the other to a digital pin. VCC could be used, but it makes more sense to use GND in my mind since there are 4 breakout pins to GND on the proto board for an easier time soldering.

Here is how I wrote the code attached to work for TinyTV remote button functionality - you might have to adapt this idea to the Tiny Video Player functionality:
#define powerBtn 2
#define muteBtn 4
#define volUpBtn 6
#define volDownBtn 7
#define chanUpBtn 9
#define chanDownBtn A2

I tried to pick pins that wouldn't be too crowded together, but let me know if you're having issues with the pin placements. You should be able to just change the pin value at the top of the code, lines 80-85.

If you're not sure how to upload the code, you can follow the directions found here:
https://learn.tinycircuits.com/Processors/TinyScreen%2B_Setup_Tutorial/ - Just make sure to open the main Arduino code file from inside the attached folder so that you can see all of the tabs of the different files when you open it in the Arduino IDE. If you get lost here, just let me know!

I recommend guiding your soldering based on the colored pinout image on the photo reel: https://tinycircuits.com/collections/proto-boards/products/proto-board-tinyshield
I was testing with pin 2 and from the silkscreen I kept thinking pin 2 was on the edge of the board, but it's 1 row in – and I work here! Very humbling experience. Don't make my same mistakes!

Code is attached [@ future users: you can only see forum message attachments if you're logged in]

Cheers,
Réna

54
New Product Ideas / Re: Camera
« on: December 08, 2022, 12:15:33 PM »

55
Wirelings / Re: LRA specification
« on: December 05, 2022, 12:38:17 PM »
No problem! I had to check for myself since I wasn't sure I had added it or not ;)

56
Hi there,

From your error log, it looks like you may not have the right boards package downloaded to be able to program the Tiny Arcade. Are you able to select "Tiny Arcade" in the Arduino IDE? Can you share a screenshot of what your Tools tab selections are and verify that you have the right port selected?

It looks like there may also be a linking error between different files since the bitmap names for bricks aren't recognized.

The tutorial covers the majority of the game constructs, but I don't recall how well it describes the order of content - you can check your files against the ones that the tutorial are based from in the bottom section that includes links to download the game files: https://learn.tinycircuits.com/Help/Developing-a-Game-For-Tiny-Arcade_Tutorial/#links

Lmk how it goes and how I can help!

Cheers,
Réna

57
Wirelings / Re: LRA specification
« on: November 28, 2022, 01:59:54 PM »
Hi there,

Under the Downloads tab on the product page is a link to the manufacturer's specifications for the motor: https://www.vybronics.com/coin-vibration-motors/lra/v-g0832013d

Here's a link to the product page so you can check out any of our other resources: https://tinycircuits.com/collections/wirelings/products/lra-wireling-drv2605

Cheers,
Réna

58
Hello, I believe you emailed in to our tech support, but I'll copy the answer here for anyone in the future with the same question.

For the software change, you will need to edit the STBLE library and change the pin number in the code to match pin 3 instead of pin 2. In the STBLE library that is downloaded with the example, navigate to STBLE/src/Arduino_hal.h – in this file, you will change BNRG_SPI_EXTI_PIN's value to 3 instead of 2.

Attached to this message is a screenshot of the highlighted variable - you will need to be logged in to the forum to see the attachment.

Cheers,
Réna

59
Hi there,

Have you checked that the baud rate in the serial monitor matches what you have in your code?

It should be 9600 for both if you're using the code from the tutorial: https://learn.tinycircuits.com/Wirelings/Pressure-Humidity_Wireling_Tutorial/

Do you have any uploading errors? Did you program the correct processor board with the Tools tab selections?

Let me know!

Cheers,
Réna

60
Thumby / Re: Custom fonts?
« on: November 11, 2022, 10:30:05 AM »
Glad it was a quick fix!

Pages: 1 2 3 4 5 6 ... 30
SMF spam blocked by CleanTalk