Close

2563 Results for "python"

  • Yet another shield for Python board

  • This week I should receive a new shield PCB for the collector. I think this shield is already 5th or 6th version, so there has been quite many iterations. This one is a bigger change as this is the first version with surface mount components and sensor...
  • Toolhead with 9 Nozzles and Python Script

  • I think it should be better to start with multiple printheads in a row instead of a matrix. So I printed 9 separate printheads which are individually assembled and then bolted together. The 3D printed parts are only for fit checks. With the new...
  • emWin Bitmaps using Python script (cross platform)

  • I wanted a nice splash screen for my project. I wanted to test the bitmap capabilities of the emWin driver, because I can see that it allows bitmaps to be displayed.There is a Segger emWin Bitmap Converter, but there are some issue with it.(1) It is...
  • HopeRF RFM98 Lora Raspberry Pi Python code

  • I have ported the receiver code to Python, based on this library for the 868 inair9 LoRa unit, modified for the HopeRF RFM98W on 434MHz on the UPUtronics Pi shield on SPI CE1https://github.com/mayeranalytics/pySX127xI will post the code later. Basically...
  • First cut at a python watchdog script

  • You'd run this out of cron, like, every few hours: #!/usr/bin/python import RPi.GPIO as GPIO import sys import time import subprocess import os import random hosts = ["1.1.1.1", "8.8.8.8", "9.9.9.9"] random.shuffle(hosts) FNULL = open(os.devnull) for...