Skip to content

Instantly share code, notes, and snippets.

View MRtecno98's full-sized avatar

Giorgio Montese MRtecno98

  • PoliTO
  • Italy
  • 02:03 (UTC +02:00)
View GitHub Profile
@MRtecno98
MRtecno98 / framework.h
Created November 12, 2021 20:45
Arduino serial panel
#ifndef LCDMENU
#define LCDMENU
void setCursor(int, int);
void incrementSelected();
void decrementSelected();
void print_options(boolean);
void print_options(boolean, int);
void print_options_fullscreen();
void allocate_options();
import serial, time
class _cOUTPUT(int) :
def __new__(self) :
return int.__new__(_cOUTPUT, 1)
def __str__(self) :
return "OUTPUT"
def __repr__(self) :
return str(self)
@MRtecno98
MRtecno98 / Pokemons_Pokemons.iml
Created August 14, 2017 19:59
Simply Console Pokemon Game
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>