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
@NickCulbertson
NickCulbertson / MiniMIDIController.ino
Last active March 11, 2024 21:58
This is a Teensy/Arduino sketch for a tiny MIDI Controller with transpose.
#include <Control_Surface.h>
USBMIDI_Interface midi;
using namespace MIDI_Notes;
// Transposer that can transpose from one octave down to one octave up
Transposer<-12, +12> transposer;
// Selector to change the transposition
IncrementDecrementSelector<transposer.getNumberOfBanks()> selector {
@aallan
aallan / bmp280.py
Last active September 12, 2023 08:05
Vindriktning webserver for Raspberry Pi Pico W written in MicroPython
from micropython import const
from ustruct import unpack as unp
# Author David Stenwall (david at stenwall.io)
# See https://github.com/dafvid/micropython-bmp280
# SPDX-License-Identifier: MIT
# Power Modes
BMP280_POWER_SLEEP = const(0)
BMP280_POWER_FORCED = const(1)
@Th3Un1q3
Th3Un1q3 / FLIPPER_TRACK_API_RELEASING.md
Last active April 1, 2024 14:49
The Hitchhiker's Guide to the Flipper Releasing

The Hitchhiker's Guide to the Flipper Releasing 📕

The purpose of this document is to simplify development for Flipper Zero platform.

It's my cure from oh, great, now I have to rebuild my app. Again...

DON'T PANIC!

@dadecoza
dadecoza / STAR.BAS
Last active December 13, 2022 16:06
10 REM @DADECOZA
20 LET Y=5
30 REM TOP
40 FOR A=1 TO Y
50 FOR B=1 TO Y
60 PRINT " ";
70 NEXT B
80 FOR B=1 TO A
90 PRINT "*";
100 NEXT B
@bramus
bramus / bookmarklet.md
Last active August 3, 2023 16:56
Mastodon User Page Bookmarklet
@axwax
axwax / MastoMakersHandles.txt
Last active December 16, 2022 19:35
Makers / Electronics people on the Fediverse
@3DPrintingDad@fosstodon.org
@aallan@mastodon.social
@adamsdesk@fosstodon.org
@alexglow@chaos.social
@AlieGG@mastodon.social
@alpenglow@mstdn.social
@amcewen@mastodon.me.uk
@ancientjames@mastodon.social
@andypiper@mastodon.social
@arturo182@mastodon.social
@joeycastillo
joeycastillo / bluemarble.py
Created September 29, 2022 02:48
Python script to convert GOES-East imagery to 7-color e-paper bitmap
# Based on Waveshare's epd5in65f.py demo. Copyright notice at end.
import sys
import os
libdir = os.path.join(os.path.dirname(os.path.dirname(os.path.realpath(__file__))), 'lib')
if os.path.exists(libdir):
sys.path.append(libdir)
import logging
@joeycastillo
joeycastillo / Focus.cpp
Created June 20, 2022 22:37
A simple Focus-based app for tracking progress on projects
#include "Focus.h"
#include "Arduino.h"
#include <algorithm>
Task::Task() {
}
View::View(Rect rect) {
this->frame = rect;
this->window.reset();
@urish
urish / wokwi-custom-chips-c-api.md
Last active January 30, 2023 05:47
Wokwi Custom Chips C API
@robonxt
robonxt / Installing the Pebble app on iOS with Sideloadly.md
Last active May 21, 2024 22:09
Installing the Pebble app on iOS with Sideloadly - Rebble (Now)Official Installation Guide by robonxt

NOTICE:

This guide is now in maintenance mode. Rebble made their own official guide based on this, so please follow the updated guide on their website at help.rebble.io/sideload-ios-app. If you have any suggestions, ping me (@robonxt) or one of the helpful people in the official Rebble Discord Server and hopefully there will be a guide update soon!

Thank you for all the support, and long live Pebble and Rebble!

Fun Fact: I've never daily driven Pebble on iOS before, only to test out sideloading and to ensure the guide works with the iOS devices I have 🤣

Installing the Pebble app on iOS with Sideloadly