Skip to content

Instantly share code, notes, and snippets.

View ishotjr's full-sized avatar
:bowtie:
hacking on Pebble/Rebble stuff

Ish Ot Jr. ishotjr

:bowtie:
hacking on Pebble/Rebble stuff
View GitHub Profile
@ishotjr
ishotjr / ATMegaZero_LS_Demo.ino
Last active April 8, 2021 01:05
All Hands Active! ATMegaZero Workshop with ishotjr Learning Shield Demo
/*
* ATMegaZero Learning Shield Demo
* for the All Hands Active! ATMegaZero Workshop with ishotjr
* https://www.meetup.com/AllHandsActive/events/276805820/
*
* You can purchase the ATMegaZero Learning Shield from the ATMegaZero Online Store at:
* https://shop.atmegazero.com/products/atmegazero-learning-shield
*
* For full documentation please visit https://atmegazero.com
*/
RacerX
10/26/2016
Thomas Stoeckert
11/30/2016
Thomas Stoeckert
1/26/2018
WSL pebble building
@ishotjr
ishotjr / adb-pbz.md
Created April 22, 2017 13:09
adb pbz

adb shell am start -n com.getpebble.android.basalt/com.getpebble.android.main.activity.MainActivity -a android.intent.action.VIEW -d file:///sdcard/Download/pebble.pbz

source 'https://rubygems.org'
gem 'sinatra'
gem 'octokit'
@ishotjr
ishotjr / -
Created August 10, 2015 00:00
void Myfont::Banner(int len, unsigned char* text, unsigned int scrollingDelay){ /* text banner creator. use with example code!!*/
int xoff=14;/* setmx offset to the right end of the screen*/
for(int i=0; i<len*5 +52; i++){ /*scrolling loop*/
for(int j=0; j<len; j++){ /*loop over all of the chars in the text*/
Myfont::Draw(xoff + j*6, text[j]); /* call the draw font function*/
}
xoff--; /* decrement x offset*/
delay(scrollingDelay); /*scrolling speed increments if delay goes down*/
{ "foo" : "bar" }
B
B