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

Pages: 1 2
16
TinyDuino Processors & TinyShields / Re: TinyScreen software example
« on: February 27, 2015, 04:36:55 AM »
You can visit https://tiny-circuits.com/TinyScreen and download the TinyScreen_Demo or TinyScreen_FlappyBirds demos.  I just got mine today, so just getting started :)

17
TinyDuino Processors & TinyShields / Re: Tiny Screen Color Values
« on: February 27, 2015, 04:33:48 AM »
Take a look in TinyScreen.cpp - there's a version of drawRect() which extracts rgb from a byte:

  uint8_t r=(color&0x03)<<4;//two bits
  uint8_t g=(color&0x1C)<<1;//three bits
  uint8_t b=(color&0xE0)>>2;//three bits
  ...

So it looks like RGB 2:3:3 is the color format.

Pages: 1 2
SMF spam blocked by CleanTalk