Skip to content

Instantly share code, notes, and snippets.

View exp0nge's full-sized avatar
👨‍💻
selective compiling...

MD Islam exp0nge

👨‍💻
selective compiling...
View GitHub Profile
#!/bin/sh
#----make sure this is run as root
user=`id -u`
if [ $user -ne 0 ]; then
echo "This script requires root permissions. Please run this script with sudo."
exit
fi
#----ascii art!
apiVersion: v1
kind: Service
metadata:
name: markdownrender
labels:
app: markdownrender
spec:
type: NodePort
ports:
- port: 8080
import RPi.GPIO as GPIO
import time
GPIO.setmode(GPIO.BCM)
GPIO.setwarnings(False)
GPIO.setup(18,GPIO.OUT)
print "LED on"
GPIO.output(18,GPIO.HIGH)
time.sleep(1)
print "LED off"
GPIO.output(18,GPIO.LOW)
@exp0nge
exp0nge / rw_sensor_data.py
Last active June 7, 2018 03:45
Sensing the World in All Three Dimensions: read/write Infineon sensor data using Serial
import serial
ser = serial.Serial('/dev/ttyACM0')
with open('log.txt', 'w') as log_file:
while True:
msg = ''
c = ser.read(1).decode('utf-8')
while c != '\n':
#include <Arduino.h>
#include "disk91_LoRaE5.h"
#include "Seeed_Arduino_GroveAI.h"
#include <Wire.h>
#include "TFT_eSPI.h"
#define FF17 &FreeSans9pt7b
// keys