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.


Topics - tvykruta

Pages: 1
1
TinyDuino Processors & TinyShields / LpWan or LoraWan on TinyCircuits?
« on: December 01, 2017, 12:14:21 AM »
Has anyone come up with a LpWan or LoraWan TinyCircuits solution?

2
TinyDuino Processors & TinyShields / Shock sensing with TinyAccelerometer
« on: November 16, 2017, 11:13:36 PM »
The default code example for the TinyAccelerometer reads raw accelerometer values which isn't terribly useful. I wanted to get a shock value, for example, if you attach it to a ball and want to measure how hard it was kicked, you can use this code in the loop():

void loop()
{
  accel.read();//This function gets new data from the accelerometer
  // Get magnitude of acceleration: sqrt(x*x+y*y+z*z) and subtract out gravity.
  int32_t x2 = (int32_t)accel.X * (int32_t)accel.X;
  x2 += (int32_t)accel.Y * (int32_t)accel.Y;
  x2 += (int32_t)accel.Z * (int32_t)accel.Z;
  SerialMonitorInterface.println(sqrt(x2) - 260);
  delay(250);//We'll make sure we're over the 64ms update time set on the BMA250
}

Works nicely. If I flick the sensor with my finger I see a reading of about 200-500. +1g is equal to ~260. If you find this useful let me know.

3
TinyDuino Processors & TinyShields / TinyScreen dead on arrival
« on: November 16, 2017, 10:20:44 PM »
I bought a brand new TinyScreen and on first time running it I see horizontal color lines dancing across the screen. If I press on the screen it gets brighter and dimmer. I pressed down to make sure it is firmly connected. I stacked TinyProcessr +  USB + TinyAccelerator + TinyScreen (I had to put accelerator in there otherwise the screen doesn't fit, the usb cable gets in the way).

This is now 3rd bad TinyCircuits components I've received. TinyGPS, WiFi and TinyScreen do not work. TinyAccelerometer is the only that is working. I posted in the forums about all these problems and no technical support. Too bad, I really like the form factor and invested $100s into this platform but I've lost count of the amount of hours I've wasted troubleshooting sample code provided by TinyCircuits, reading forum posts, modifying code, not getting anywhere.

After unplugging it and plugging it in a few time it stopped working completely (meaning display stays dead, but the example still runs, no errors).

I used the TinyCircuits-TinyScreen_Lib from manufacturer page.

Can anyone recommend a similar but more reliable platform? TinyCircuits needs to provide tech support and/or improve manufacturing process if they want people to buy their components.

4
TinyDuino Processors & TinyShields / GPS TinyShield not getting location
« on: November 08, 2017, 07:56:08 PM »
I have a GPS TinyShield and am running the official example, but I only get this output:

**** **** ********* ********** **** ********** ******** **** ****** ****** ***** ***   *******  ****** ***   17046 0         0       

It does this infinitely. I have it sitting on a window with clear view of the sky for 10 minutes. I'm using this example:

https://codebender.cc/utilities/download/37442?board=TinyDuino&referrer=TinyCircuits

As listed on the TinyCircuits official product page:'
https://tinycircuits.com/products/gps-tinyshield

I have a WiFI module which is not working either. 0/2 right now unfortunately for TinyCircuits. I've spent 2 days reading posts trying to solve this, no luck yet.

Pages: 1
SMF spam blocked by CleanTalk