This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bl_info = { | |
"name": "Polar Zonohedron", | |
"author": "Rob Bell, Garrett Mace", | |
"version": (1, 0), | |
"blender": (2, 80, 0), | |
"location": "View3D > Add > Mesh > Polar Zonohedron", | |
"description": "Adds a new Polar Zonohedron", | |
"warning": "", | |
"wiki_url": "", | |
"category": "Add Mesh", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int yCenterMin = 0; | |
int yCenterMax = 0; | |
int xCenterMin = 0; | |
int xCenterMax = 0; | |
int yLeftMost = 0; | |
int xLeftMost = 0; | |
int numElements = 0; | |
// Storage for selected elements | |
UL_ELEMENT groupElements[]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Makefile for ST ARM Cortex microcontrollers | |
# Important settings should be updated for each project. | |
# The rest of the makefile can usually be left alone. | |
#### /!\ IMPORTANT SETTINGS START HERE /!\ ##### | |
# Device options | |
CPU = cortex-m4 | |
DEVICE = STM32L476xx |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Draw slanting bars scrolling across the array | |
void slantMello() { | |
static byte slantPos = 0; | |
static byte distortDelay; | |
static byte changeDelay = 10; | |
static byte lastoffset = 1; | |
static uint16_t slowcolor = 0; | |
// startup tasks |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <ESP8266WiFi.h> | |
#include <ESP8266HTTPClient.h> | |
#include <ArduinoJson.h> | |
// WiFi network parameters | |
const char* ssid = "<your SSID>"; | |
const char* password = "<your passphrase>"; | |
void setup() { |