Skip to content

Instantly share code, notes, and snippets.

View lean8086's full-sized avatar

Leandro Linares lean8086

View GitHub Profile
#include "FastLED.h"
#define BTN_PIN 3
#define LED_PIN A3
#define LED_TYPE WS2812B
#define LED_COLOR 0x7aff0b
#define TOTAL_LEDS 110
#define BRIGHTNESS 123 /* 0 to 255 */
#define LOWEST_BRIGHTNESS 5 /* 0 to 255 */
@lean8086
lean8086 / servo-rotation.py
Last active June 12, 2022 11:36
Hello world for servo motors on a Pico with MicroPython
from machine import Pin,PWM
import utime
MID = 1500000
MIN = 1000000
MAX = 2000000
led = Pin(25,Pin.OUT)
pwm = PWM(Pin(15))
#include "FastLED.h"
#define LED_PIN A3
#define TOTAL_LEDS 110
#define BRIGHTNESS 123
#define LED_TYPE WS2812B
#define CHUNK_SIZE_MS 300000 // 5 minute chunks (1 sentence per chunk)
#define CHECK_EVERY_MS 3000 // Check every 3 seconds
#define HOUR_MAX_LEN 6 // Maximum amount of letters an hour can have
#define SENTENCE_MAX_LEN 24 // Maximum amount of letters a sentence can have
// Channel can be a number from 0 to 15. Typically displayed as 1 to 16.
byte channel = 0;
// ...
void setup() {
// ...
pinMode(18, INPUT_PULLUP);
pinMode(19, INPUT_PULLUP);
}
<!-- DON'T -->
<div role="button" tabindex="0">X</div>
<!-- DO -->
<button>Close</button>
<button aria-haspopup="true" aria-controls="modal-content" id="modal-trigger">Open modal window</button>
<section role="dialog" aria-hidden="true" id="modal-content">Content inside modal window</section>
<button id="modal-trigger">Open modal window</button>
<section id="modal-content">Content inside modal window</section>
<article>
<h3>Bose QuietComfort 35 II</h3>
<p>$217.99</p>
<a href="...">See all options</a>
<img src="..." alt="...">
</article>
<article itemscope itemtype="https://schema.org/Product">
<h3>Bose QuietComfort 35 II</h3>
<p>$217.99</p>
<a href="...">See all options</a>
<img src="..." alt="...">
</article>
<article itemscope itemtype="https://schema.org/Product">
<h3 itemprop="name">Bose QuietComfort 35 II</h3>
<p itemprop="offers">$217.99</p>
<a href="...">See all options</a>
<img itemprop="image" src="..." alt="...">
</article>