Skip to content

Instantly share code, notes, and snippets.

View ferranpons's full-sized avatar
💯
Into Kotlin Multiplatform

Ferran Pons ferranpons

💯
Into Kotlin Multiplatform
View GitHub Profile
@ferranpons
ferranpons / twitterUpdate.py
Last active December 7, 2017 08:41
Gist that publish a Twitter update (tweet) on the given account (key, secret, access token, access token secret) using Tweepy
#!/usr/bin/python
import sys, getopt
import tweepy
def main(argv):
consumer_key = ''
consumer_secret = ''
access_token = ''
access_token_secret = ''
@ferranpons
ferranpons / arducam_capture_pico_sdcard_with_trigger.py
Last active February 28, 2024 12:03
Capture image with Arducam OV5642 + Rpi Pico + SD Card Module + Trigger using CircuitPython
import time as utime
import busio
import board
import usb_cdc
from Arducam import *
from board import *
import os
import sdcardio
import storage