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

Pages: 1 2 3 4 5
16
TinyTV & Tiny Video Player / Re: #include "src/IRremote/IRremote.h"
« on: August 15, 2022, 06:33:31 PM »
That works (thanks!)....but now I'm getting a  tcConfigure(30720) was not declared in this scope (see below)....and after commenting that line below out, it pops up another "readCodes() not declared in this scope" message on another instruction....I'm attempting to simply compile TinyTV....what am I missing.  -john

void setup(void) {
  analogWrite(A0, analogRead(A0));//Set audio output to avoid picking up noise, even if audio isn't used
//  tcConfigure(30720);
  display.begin();
  display.setBitDepth(1);
  display.setFlip(true);
  display.setFont(thinPixel7_10ptFontInfo);
  display.initDMA();
  irrecv.enableIRIn(); // Start the receiver
  pinMode(RECV_PIN, INPUT_PULLUP);
  SPI.begin();
  delay(50);
  if (!sd.begin(10, SPI_FULL_SPEED)) {
    cardNotFound();
  }
  SPI.setClockDivider(0);
  if (display.getButtons(TSButtonUpperRight)) {
    delay(10);
    if (display.getButtons(TSButtonUpperRight)) {
      settingsMainMenu();
    }
  }
  readCodes();
  readSettings();
  if (!fullVolume) {
    volume = 3;
  }

17
TinyTV & Tiny Video Player / Re: #include "src/IRremote/IRremote.h"
« on: August 15, 2022, 03:24:00 PM »
Thanks Réna...but help me out here...how does one go about putting the contents of the folder into the Arduino lib??

-john

18
TinyTV & Tiny Video Player / #include "src/IRremote/IRremote.h"
« on: August 15, 2022, 12:46:08 PM »
Since the TinyCircuits TinyTV Video Player (Arduino code) has the #include "src/IRremote/IRremote.h" ...where can one find the lib?


Thanks,

john

19
TinyTV & Tiny Video Player / Re: Tiny TV Remote Power ON-OFF
« on: July 22, 2022, 12:39:50 PM »
Réna,

Thanks, again!

-john

20
TinyTV & Tiny Video Player / Re: Tiny TV Remote Power ON-OFF
« on: July 21, 2022, 06:12:22 PM »
Réna,

Then based on your comments, can one assume that this is the part of the code that does the Tiny TV ON-OFF without the power switch?

-john

  if (IRresult == powerCode || checkNewButtonPress(TSButtonLowerLeft)) {
    if (!isOff) {
      if (!isStopped()) {
        requestPause();
        delay(10);
        display.endTransfer();
      }
      display.off();
      isOff = true;
    } else {
      display.on();
      if (!isStopped()) {
        display.goTo(0, 0);
        display.startData();
        requestUnPause();
      }
      isOff = false;
    }
  }

21
TinyTV & Tiny Video Player / Tiny TV Remote Power ON-OFF
« on: July 21, 2022, 03:05:17 PM »
Question....does either the remote control or OLED push button actually turn power OFF; i.e., no battery power to the circuitry...or...does this simply blank the display as in display.off()

-john

22
General Discussion / Re: Tiny TV Software
« on: July 21, 2022, 02:50:12 PM »
Réna,

Thanks!

-john

23
General Discussion / Tiny TV Software
« on: July 20, 2022, 06:58:57 PM »
Is this the Tiny TV software that's loaded onto the OLED board?? 

https://raw.githubusercontent.com/TinyCircuits/TinyCircuits-TinyTV-ASK4002/master/examples/TinyTV.zip

Thanks,

John


24
General Discussion / Re: newer Nordic BLE module
« on: July 13, 2021, 08:18:39 PM »
Réna,,

Thanks for the update.

John

25
General Discussion / newer Nordic BLE module
« on: July 09, 2021, 06:25:01 PM »
Would your newer TinyCircuits Nordic BLE module be the Nordic Semiconductor nrf52811 with 32bit ARM processor and integrated Bluetooth Low Energy communication?   

Like in this product https://flightsketch.com/store/catalog/flightsketch-mini_1/

Thanks,

John


26
General Discussion / Re: Dual Motor TinyShield Repair
« on: July 09, 2021, 06:20:30 PM »
Réna,

I've already (mistakenly) removed R1 on the Motor Controller board and changed the code to match...thinking that it interfered with the Wireling board. 

I want to go the other way, now, so that the product I'm developing is compatible with your "off the shelf" boards with nothing removed.

Thanks for the tip...I try it and let you know.

John

27
General Discussion / Dual Motor TinyShield Repair
« on: July 09, 2021, 11:37:33 AM »
I mistakenly removed resistor R1 from the Dual Motor TinyShield  ASD2302-R-C - thinking that it may interfere with the Wireling Adapter (I2C wise).

Question...is it possible to replace R1 (which is shown as 1k on the schematic) with 0 ohms (a dead short jumper)...as a temporary repair for now?

Thanks,
John

28
General Discussion / Re: Possible Board I2C Conflict
« on: July 08, 2021, 07:23:51 PM »
Many thanks!

John

29
General Discussion / Possible Board I2C Conflict
« on: July 05, 2021, 03:03:26 PM »
Will the following 2 boards conflict with one another on the I2C bus without changing address resistors (i.e....out of the box)?

 Dual Motor TinyShield  ASD2302-R-C

 Wireling Adapter TinyShield  ASD2022

Thanks,
John

30
General Discussion / Re: MicroSD TinyShield Problem
« on: May 24, 2021, 04:46:34 PM »
Willem  et al,

The Rocket Performance Monitor (RPM1) now has the TC eeprom shield for data storage....and it works great! 

During each rocket flight the data (21 separate items) are saved to eeprom for later review on the attached OLED.

Altitude and acceleration data are automatically output for all recorded flights via the USB link to your favorite spreadsheet (CSV output).

The main advantage of going with eeprom rather than the SD Card are:

1.  You don't have to take it out of the rocket (and maybe lose it).

2.  EEProm is cheaper than an SD Card.  Rocket people are price sensitive (so I've found).

Anyway, I've still got a couple of SD Card boards  + SD cards and I'm sure I'll find a use for them eventually, maybe even for the rocket application. 

And the eeprom worked out better than expected.

Thanks for all your help and advice! 

-john

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