View bus.py
#bus.py | |
##Copyright 2018 Yornik Heyl | |
## | |
##Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, | |
##including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, | |
##subject to the following conditions: | |
## | |
##The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | |
## | |
##THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. |
View DNAmind.py
""" | |
Yornik Heyl 1084970 DNAmind | |
Een kloon van mastermind waar je probeert een DNA string. | |
van een variabele lengte tussen de 3 en 12 te raden. | |
""" | |
""" | |
Voor het willekeurig kiezen in een lijst en afsluiten | |
delen van modules importeren. |
View clock.ino
#include <stdint.h> | |
#include <Arduino.h> | |
#include <FastLED.h> | |
#define DATA_PIN_LED 27 | |
static CRGB leds[25]; | |
void setup(void) |
View Handwasher_timer.ino
#include <stdint.h> | |
#include <Arduino.h> | |
#include <FastLED.h> | |
#define DATA_PIN_LED 27 | |
const int pushButton = 39; | |
static CRGB leds[25]; |