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
// EDUCATIONAL CODE. Do What the Fuck You Want to Public License. | |
// Just a quick code to explain how the TIL311 hexa display works. | |
// I do not have it anymore, this is just based on the datasheet so no means of testing. | |
// This is not object-oriented or uC-style for education purpose. | |
// You will have to connect pins 1 and 14 of TIL311 to Vcc (5V) | |
// pin 7 to ground. | |
// Datasheet: https://www.jameco.com/Jameco/Products/ProdDS/32951.pdf for reference. |
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
import matplotlib.pyplot as mpl | |
import time | |
import random | |
from espeak import espeak | |
# система управления ракетами | |
def randGen(pts=1): | |
#espeak.set_voice("ru") | |
#espeak.synth("система управления ракетой вооружена") |
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
/* | |
Programmation Android 2018-2019 | |
ECE Paris - ING5 APP Systèmes Embarqué | |
TP6 et TP7 | |
Application - Boussole | |
*/ | |
package com.example.p095010.tp_android_boussole; |