K-0595: Difference between revisions

From 52Pi Wiki
Jump to navigation Jump to search
 
(12 intermediate revisions by the same user not shown)
Line 23: Line 23:
<br style="clear:both;">
<br style="clear:both;">
* Step 2
* Step 2
[[File:Minitowerkit安装2.jpg|left|800px]]
[[File:K-0595-安装2.jpg|left|800px]]
<br style="clear:both;">
 
===Wiring Details===
[[File:K-0592-接线标注.jpg|left|800px]]
<br style="clear:both;">
<br style="clear:both;">


Line 44: Line 48:
| SCL || SCL
| SCL || SCL
|}  
|}  
* Driver Install:
=Driver Install:=
** Method 1 (Recommended):
===Method 1 ===
0.96 inch OLED usage please refer to: [ https://wiki.52pi.com/index.php/S-0005 ]  
0.96 inch OLED usage please refer to: [ https://wiki.52pi.com/index.php/S-0005 ]  
After installing ssd1306 driver, you can refer to the example code to create your own python script to show system informations.
After installing ssd1306 driver, you can refer to the example code to create your own python script to show system informations.
** Method 2:
===Method 2===
* This method will refer to Adafruit python SSD1306 example for this display.
How to enable OLED 0.96
Open a terminal and Download demo code from: [ https://github.com/adafruit/Adafruit_Python_SSD1306 ]
* 1. Turn on `i2c function` by using `sudo raspi-config` -> `interface options` -> `i2c` -> `enable` -> `yes`.
<pre>  
* 2. Check if the screen has been recognized by Raspberry Pi
sudo python3 -m pip install --upgrade pip setuptools wheel
<pre>
git clone https://github.com/adafruit/Adafruit_Python_SSD1306.git
i2cdetect -y 1
cd Adafruit_Python_SSD1306
</pre>
sudo python setup.py install
if encount `command not found` error, please install `i2c-tools` by using `sudo apt update && sudo apt -y install i2c-tools`.
pip3 install Adafruit-BBIO
* 3. Install dependencies libraries:
<pre>
sudo apt -y install python3 python3-pip python3-pil libjpeg-dev zlib1g-dev libfreetype6-dev liblcms2-dev libopenjp2-7 libtiff5
</pre>
* 4. Grant privilleges to user `pi`
<pre>
sudo usermod -a -G gpio,i2c pi
</pre>
</pre>
* Run example Demo:
* 5. Download sample code from this repo:
<pre>
<pre>
cd examples/
git clone https://github.com/rm-hull/luma.examples.git
cd luma.examples/
</pre>
</pre>
* You may need to modify the stats.py as following code:
* 6. Install the dependencies
<pre>
<pre>
 
sudo -H pip3 install -e .
import time
 
import Adafruit_GPIO.SPI as SPI
import Adafruit_SSD1306
 
from PIL import Image
from PIL import ImageDraw
from PIL import ImageFont
 
import subprocess
import smbus2
# from ina219 import INA219, DeviceRangeError
 
# Raspberry Pi pin configuration:
RST = None    # on the PiOLED this pin isnt used
# Note the following are only used with SPI:
DC = 23
SPI_PORT = 0
SPI_DEVICE = 0
DEVICE_BUS = 1
 
DEVICE_ADDR  = 0x17
PROTECT_VOLT = 3700
SAMPLE_TIME = 2
 
ina_supply = INA219(0.00725, address=0x40)
ina_supply.configure()
supply_voltage = ina_supply.voltage()
supply_current = ina_supply.current()
supply_power = ina_supply.power()
 
ina_batt = INA219(0.005, address=0x45)
ina_batt.configure()
batt_voltage = ina_batt.voltage()
batt_current = ina_batt.current()
batt_power = ina_batt.power()
 
 
# Beaglebone Black pin configuration:
# RST = 'P9_12'
# Note the following are only used with SPI:
# DC = 'P9_15'
# SPI_PORT = 1
# SPI_DEVICE = 0
 
# 128x32 display with hardware I2C:
# disp = Adafruit_SSD1306.SSD1306_128_32(rst=RST)   ####### please comment this line by adding hash tag in front of line #######
 
# 128x64 display with hardware I2C:  ##########################Please Open following line by removing hash tag ######
disp = Adafruit_SSD1306.SSD1306_128_64(rst=RST)
 
# Note you can change the I2C address by passing an i2c_address parameter like:
# disp = Adafruit_SSD1306.SSD1306_128_64(rst=RST, i2c_address=0x3C)
 
# Alternatively you can specify an explicit I2C bus number, for example
# with the 128x32 display you would use:
# disp = Adafruit_SSD1306.SSD1306_128_32(rst=RST, i2c_bus=2)
 
# 128x32 display with hardware SPI:
# disp = Adafruit_SSD1306.SSD1306_128_32(rst=RST, dc=DC, spi=SPI.SpiDev(SPI_PORT, SPI_DEVICE, max_speed_hz=8000000))
 
# 128x64 display with hardware SPI:
# disp = Adafruit_SSD1306.SSD1306_128_64(rst=RST, dc=DC, spi=SPI.SpiDev(SPI_PORT, SPI_DEVICE, max_speed_hz=8000000))
 
# Alternatively you can specify a software SPI implementation by providing
# digital GPIO pin numbers for all the required display pins.  For example
# on a Raspberry Pi with the 128x32 display you might use:
# disp = Adafruit_SSD1306.SSD1306_128_32(rst=RST, dc=DC, sclk=18, din=25, cs=22)
 
# Initialize library.
disp.begin()
 
# Clear display.
disp.clear()
disp.display()
 
# Create blank image for drawing.
# Make sure to create image with mode '1' for 1-bit color.
width = disp.width
height = disp.height
image = Image.new('1', (width, height))
 
# Get drawing object to draw on image.
draw = ImageDraw.Draw(image)
 
# Draw a black filled box to clear the image.
draw.rectangle((0,0,width,height), outline=0, fill=0)
 
# Draw some shapes.
# First define some constants to allow easy resizing of shapes.
padding = -2
top = padding
bottom = height-padding
# Move left to right keeping track of the current x position for drawing shapes.
x = 0
 
 
# Load default font.
font = ImageFont.load_default()
 
# Alternatively load a TTF font.  Make sure the .ttf font file is in the same directory as the python script!
# Some other nice fonts to try: http://www.dafont.com/bitmap.php
# font = ImageFont.truetype('Minecraftia.ttf', 8)
 
 
# i2c bus configure
bus = smbus2.SMBus(DEVICE_BUS)
aReceivedBuf = []
aReceivedBuf.append(0x00)
 
for i in range(1, 255):
    aReceivedBuf.append(bus.read_byte_data(DEVICE_ADDR, i))
 
while True:
 
    # Draw a black filled box to clear the image.
    draw.rectangle((0,0,width,height), outline=0, fill=0)
 
    # Shell scripts for system monitoring from here : https://unix.stackexchange.com/questions/119126/command-to-display-memory-usage-disk-usage-and-cpu-load
    cmd = "hostname -I | cut -d\' \' -f1"
    IP = subprocess.check_output(cmd, shell = True )
    cmd = "top -bn1 | grep load | awk '{printf \"CPU Load: %.2f\", $(NF-2)}'"
    CPU = subprocess.check_output(cmd, shell = True )
    cmd = "free -m | awk 'NR==2{printf \"Mem: %s/%sMB %.2f%%\", $3,$2,$3*100/$2 }'"
    MemUsage = subprocess.check_output(cmd, shell = True )
    cmd = "df -h | awk '$NF==\"/\"{printf \"Disk: %d/%dGB %s\", $3,$2,$5}'"
    Disk = subprocess.check_output(cmd, shell = True )
   
    aReceivedBuf = []
    aReceivedBuf.append(0x00)
 
    for i in range(1, 255):
        aReceivedBuf.append(bus.read_byte_data(DEVICE_ADDR, i))
 
    batt_voltage = ina_batt.voltage()
    batt_current = ina_batt.current()
    batt_power = ina_batt.power()
    if (aReceivedBuf[8] << 8 | aReceivedBuf[7]) > 4000:
        charge_port = 'Charging via Type-C'
    elif (aReceivedBuf[10] << 8 | aReceivedBuf[9]) > 4000:
        charge_port = 'Charging via MicroUSB'
    else:
        charge_port = 'Not Charging'
   
    # Write two lines of text.
 
    draw.text((x, top),      "IP: " + str(IP),  font=font, fill=255)
    draw.text((x, top+8),    str(CPU.decode('utf-8')), font=font, fill=255)
    draw.text((x, top+16),    str(MemUsage),  font=font, fill=255)
    draw.text((x, top+25),    str(Disk),  font=font, fill=255)
 
    # Display image.
    disp.image(image)
    disp.display()
    time.sleep(3)
   
    draw.rectangle((0,0,width,height), outline=0, fill=0)
    draw.text((x, top),"Voltage: " + str(batt_voltage),  font=font, fill=255)
    draw.text((x, top+8), "Current:" + str(batt_current), font=font, fill=255)
    draw.text((x, top+16),"Power:" + str(batt_power),  font=font, fill=255)
    draw.text((x, top+25),"ChargePort:" + str(charge_port),  font=font, fill=255)
    # display UPS information
 
    disp.image(image)
    disp.display()
    time.sleep(3)
</pre>
</pre>
* Then execute following command:
* 7. Entering into example folder and test it.
<pre>
<pre>
python3 stats.py
cd luma.examples/examples/
python3 sys_info.py
</pre>
</pre>
 
==Github==
* Readme [ https://github.com/geeekpi/minitowercase ]
==Keywords==
==Keywords==
* Mini Tower Kit, 3D printed Case, Raspberry Pi case, Raspberry Pi case with oled display.
* Mini Tower Kit, 3D printed Case, Raspberry Pi case, Raspberry Pi case with oled display.

Latest revision as of 14:07, 4 August 2022

Mini Tower Kit

Minitowerkit01.jpg

Descriptions

This is a 3D printed case kit compatible with Raspberry Pi 3B, 3B+, and 4B. The exquisite shape provides good support and protection. The laser-cut acrylic cover on the side allows you to observe the running state of the Raspberry Pi. ICE Tower Cooler can not only provide good heat dissipation, but also turn your Raspberry Pi into an exquisite desktop mini host. The top OLED opening is compatible with 0.96 inch OLED display, and can display the running status of the Raspberry Pi through simple programming, such as: CPU load, memory usage, disk utilization, network load, CPU temperature information, etc.

Features

  • Easy to Install
  • Pretty Outlook
  • Compatible with Raspberry Pi 3B/3B+/4B
  • 0.96 inch OLED Display
  • Laser-cut Acrylic cover
  • Compatible with both ice tower cooler and low-profile ice tower cooler.
  • 3D printing case

Gallery

  • Application Scenario
Minitowerkit01.jpg


  • Heat sink effect
Minitowerkit散热.jpg


Assemble Steps

  • Step 1
Minitowerkit安装1.jpg


  • Step 2
K-0595-安装2.jpg


Wiring Details

K-0592-接线标注.jpg


Package Includes

  • 1 x Mini Tower Kit
Minitowerkit套件2.jpg


How to use OLED display

  • Wiring diagram:
0.96 OLED display Raspberry Pi GPIO
Vcc 3.3V (physical pin No.1)
GND GND
SDA SDA
SCL SCL

Driver Install:

Method 1

0.96 inch OLED usage please refer to: [ https://wiki.52pi.com/index.php/S-0005 ] After installing ssd1306 driver, you can refer to the example code to create your own python script to show system informations.

Method 2

How to enable OLED 0.96

  • 1. Turn on `i2c function` by using `sudo raspi-config` -> `interface options` -> `i2c` -> `enable` -> `yes`.
  • 2. Check if the screen has been recognized by Raspberry Pi
i2cdetect -y 1 

if encount `command not found` error, please install `i2c-tools` by using `sudo apt update && sudo apt -y install i2c-tools`.

  • 3. Install dependencies libraries:
sudo apt -y install python3 python3-pip python3-pil libjpeg-dev zlib1g-dev libfreetype6-dev liblcms2-dev libopenjp2-7 libtiff5
  • 4. Grant privilleges to user `pi`
sudo usermod -a -G gpio,i2c pi
  • 5. Download sample code from this repo:
git clone https://github.com/rm-hull/luma.examples.git
cd luma.examples/
  • 6. Install the dependencies
sudo -H pip3 install -e .
  • 7. Entering into example folder and test it.
cd luma.examples/examples/
python3 sys_info.py

Github

Keywords

  • Mini Tower Kit, 3D printed Case, Raspberry Pi case, Raspberry Pi case with oled display.