示例#1
0
def test():
    """CircuitPython Text, Shape & Sprite"""
    if implementation.name != 'circuitpython':
        print()
        print('This demo is for CircuitPython only!')
        exit()
    try:
        # Configuratoin for CS and DC pins:
        cs_pin = DigitalInOut(board.P0_15)
        dc_pin = DigitalInOut(board.P0_17)
        rst_pin = DigitalInOut(board.P0_20)

        # Setup SPI bus using hardware SPI:
        spi = SPI(clock=board.P0_24, MOSI=board.P0_22)

        # Create the SSD1351 display:
        display = Display(spi, dc=dc_pin, cs=cs_pin, rst=rst_pin)
        display.clear()

        # Load Fixed Font
        fixed = XglcdFont('fonts/FixedFont5x8.c', 5, 8, letter_count=96)

        # Title
        WIDTH = 128
        text = 'CircuitPython Demo'
        # Measure text and center
        length = fixed.measure_text(text)
        x = int((WIDTH / 2) - (length / 2))
        display.draw_text(x, 6, text, fixed, color565(255, 255, 0))

        # Draw title outline
        display.draw_rectangle(0, 0, 127, 20, color565(0, 255, 0))

        # Load sprite
        logo = BouncingSprite('images/blinka45x48.raw', 45, 48, 128, 128, 1,
                              display)

        while True:
            timer = monotonic()
            logo.update_pos()
            logo.draw()
            # Attempt to set framerate to 30 FPS
            timer_dif = .033333333 - (monotonic() - timer)
            if timer_dif > 0:
                sleep(timer_dif)

    except KeyboardInterrupt:
        display.cleanup()
示例#2
0
def test():
    """Test code."""
    spi = SPI(2, baudrate=14500000, sck=Pin(18), mosi=Pin(23))
    display = Display(spi, dc=Pin(17), cs=Pin(5), rst=Pin(16))
    display.contrast(0)
    display.draw_image('images/MicroPython128x128.raw', 0, 0, 128, 128)

    fixed_font = XglcdFont('fonts/FixedFont5x8.c', 5, 8)
    contrast_range = list(range(1, 16)) + list(reversed(range(15)))
    for c in contrast_range:
        display.contrast(c)
        display.draw_text(30, 120, 'contrast: {0:02d}'.format(c), fixed_font,
                          color565(255, 255, 255))
        sleep(1)

    display.cleanup()
def test():
    """Test code."""
    spi = SPI(2, baudrate=14500000, sck=Pin(18), mosi=Pin(23))
    display = Display(spi, dc=Pin(17), cs=Pin(5), rst=Pin(16))

    display.draw_image('images/Tabby128x128.raw', 0, 0, 128, 128)

    print("Loading fonts, please wait.")
    fixed_font = XglcdFont('fonts/FixedFont5x8.c', 5, 8)
    unispace = XglcdFont('fonts/Unispace12x24.c', 12, 24)
    print("Fonts loaded.")

    display.draw_text(0, 0, 'Not transparent', fixed_font,
                      color565(255, 0, 255))
    display.draw_text(0,
                      80,
                      'Transparent',
                      unispace,
                      color565(0, 128, 255),
                      spacing=0,
                      transparent=True)
    display.draw_text(0,
                      103,
                      'Background',
                      unispace,
                      color565(0, 128, 255),
                      color565(255, 255, 255),
                      spacing=0)
    display.draw_text(103,
                      20,
                      'Test',
                      unispace,
                      color565(0, 255, 128),
                      landscape=True,
                      spacing=2,
                      transparent=True)
    display.draw_text(0,
                      20,
                      'Test',
                      unispace,
                      color565(128, 255, 0),
                      landscape=True)

    sleep(9)
    display.cleanup()
示例#4
0
 def draw_text(self,
               x,
               y,
               text,
               font,
               color,
               background=0,
               landscape=False,
               spacing=1):
     max_length = (self.width - x + spacing) // (font.width + spacing)
     text = text[0:min(max_length, len(text))]
     Display.draw_text(self,
                       x,
                       y,
                       text,
                       font,
                       color,
                       background=background,
                       landscape=landscape,
                       spacing=spacing)
示例#5
0
        display.fill_hrect(water_level + 1, 53, 121 - water_level, 18,
                           color565(0, 0, 0))
        display.draw_text(37, 40,
                          str(water_level) + '/' + str(MAX_WATER) + '  ',
                          bally, color565(255, 255, 255))


if spi is None:
    spi = SPI(2, baudrate=14500000, sck=Pin(18), mosi=Pin(23))
display = Display(spi, dc=Pin(17), cs=Pin(5), rst=Pin(16))
display.draw_image('MicroPython128x128.raw', 0, 0, 128, 128)
sleep(1)
display.clear()

bally = XglcdFont('Bally7x9.c', 7, 9)
display.draw_text(0, 0, 'Diesel:', bally, color565(255, 255, 255))
display.draw_text(0, 40, 'Vann:', bally, color565(255, 255, 255))
display.draw_text(0, 80, 'Septik:', bally, color565(255, 255, 255))
display.draw_rectangle(0, 12, 120, 20, color565(255, 255, 255))
display.draw_rectangle(0, 52, 120, 20, color565(255, 255, 255))
display.draw_rectangle(0, 92, 120, 20, color565(255, 255, 255))

adc = ADC(Pin(35))
adc.atten(adc.ATTN_11DB)  #normalized to 3.3v

while True:
    # read_septic()
    read_water()

    sleep(0.1)
示例#6
0
def test():
    """Test code."""
    spi = SPI(2, baudrate=14500000, sck=Pin(18), mosi=Pin(23))
    display = Display(spi, dc=Pin(17), cs=Pin(5), rst=Pin(16))

    print("Loading fonts, please wait.")
    arcadepix = XglcdFont('fonts/ArcadePix9x11.c', 9, 11)
    bally = XglcdFont('fonts/Bally7x9.c', 7, 9)
    broadway = XglcdFont('fonts/Broadway17x15.c', 17, 15)
    espresso_dolce = XglcdFont('fonts/EspressoDolce18x24.c', 18, 24)
    fixed_font = XglcdFont('fonts/FixedFont5x8.c', 5, 8)
    neato = XglcdFont('fonts/Neato5x7.c', 5, 7, letter_count=223)
    robotron = XglcdFont('fonts/Robotron7x11.c', 7, 11)
    unispace = XglcdFont('fonts/Unispace12x24.c', 12, 24)
    wendy = XglcdFont('fonts/Wendy7x8.c', 7, 8)
    print("Fonts loaded.")

    display.draw_text(0, 0, 'Arcade Pix 9x11', arcadepix, color565(255, 0, 0))
    display.draw_text(0, 12, 'Bally 7x9', bally, color565(0, 255, 0))
    display.draw_text(0, 23, 'Broadway', broadway, color565(0, 0, 255))
    display.draw_text(0, 36, 'Espresso', espresso_dolce, color565(0, 255, 255))
    display.draw_text(0, 64, 'Fixed Font 5x8', fixed_font,
                      color565(255, 0, 255))
    display.draw_text(0, 76, 'Neato 5x7', neato, color565(255, 255, 0))
    display.draw_text(0, 85, 'Robotron 7x11', robotron,
                      color565(255, 255, 255))
    display.draw_text(0, 96, 'Unispace', unispace, color565(255, 128, 0))
    display.draw_text(0, 120, 'Wendy 7x8', wendy, color565(255, 0, 128))

    sleep(9)
    display.clear()

    display.draw_text(0,
                      0,
                      'Arcade Pix 9x11',
                      arcadepix,
                      color565(255, 0, 0),
                      landscape=True)
    display.draw_text(12,
                      0,
                      'Bally 7x9',
                      bally,
                      color565(0, 255, 0),
                      landscape=True)
    display.draw_text(23,
                      0,
                      'Broadway',
                      broadway,
                      color565(0, 0, 255),
                      landscape=True)
    display.draw_text(36,
                      0,
                      'Espresso',
                      espresso_dolce,
                      color565(0, 255, 255),
                      landscape=True)
    display.draw_text(64,
                      0,
                      'Fixed Font 5x8',
                      fixed_font,
                      color565(255, 0, 255),
                      landscape=True)
    display.draw_text(76,
                      0,
                      'Neato 5x7',
                      neato,
                      color565(255, 255, 0),
                      landscape=True)
    display.draw_text(85,
                      0,
                      'Robotron 7x11',
                      robotron,
                      color565(255, 255, 255),
                      landscape=True)
    display.draw_text(96,
                      0,
                      'Unispace',
                      unispace,
                      color565(255, 128, 0),
                      landscape=True)
    display.draw_text(120,
                      0,
                      'Wendy 7x8',
                      wendy,
                      color565(255, 0, 128),
                      landscape=True)

    sleep(9)
    display.clear()

    display.draw_text(0,
                      0,
                      'Arcade Pix 9x11',
                      arcadepix,
                      color565(255, 0, 0),
                      background=color565(0, 255, 255))
    display.draw_text(0,
                      12,
                      'Bally 7x9',
                      bally,
                      color565(0, 255, 0),
                      background=color565(0, 0, 128))
    display.draw_text(0,
                      23,
                      'Broadway',
                      broadway,
                      color565(0, 0, 255),
                      background=color565(255, 255, 0))
    display.draw_text(0,
                      36,
                      'Espresso',
                      espresso_dolce,
                      color565(0, 255, 255),
                      background=color565(255, 0, 0))
    display.draw_text(0,
                      64,
                      'Fixed Font 5x8',
                      fixed_font,
                      color565(255, 0, 255),
                      background=color565(0, 128, 0))
    display.draw_text(0,
                      76,
                      'Neato 5x7',
                      neato,
                      color565(255, 255, 0),
                      background=color565(0, 0, 255))
    display.draw_text(0,
                      85,
                      'Robotron 7x11',
                      robotron,
                      color565(255, 255, 255),
                      background=color565(128, 128, 128))
    display.draw_text(0,
                      96,
                      'Unispace',
                      unispace,
                      color565(255, 128, 0),
                      background=color565(0, 128, 255))
    display.draw_text(0,
                      120,
                      'Wendy 7x8',
                      wendy,
                      color565(255, 0, 128),
                      background=color565(255, 255, 255))

    sleep(9)
    display.cleanup()
示例#7
0
            swapBli = bli
            swapMtime = mtime
            display.draw_text(5, 40, mtime, robotron, color565(220, 220, 220))
            display.draw_text(127 - 5 * (len(city) + 2), 40, city, fixedfont,
                              color565(255, 255, 0))
            display.draw_text(127 - 13 * (len(temp)), 50, temp, espressodolc,
                              color565(255, 255, 0))
            display.draw_text(0, 80, 'bilibili', espressodolc,
                              color565(0, 0, 255))
            display.draw_text(0, 110, bli, robotronm, color565(0, 255, 255))
            display.draw_image(img, 78, 78, 50, 50)
        time.sleep(3)
        gc.collect()


time.sleep(2)
if wlan.isconnected():
    _thread.start_new_thread(oledShow, ('233', ))
else:
    wlan.connect(wifiname, wifipassword)
    time.sleep(3)
    if wlan.isconnected():
        _thread.start_new_thread(oledShow, ('233', ))
    else:
        display.draw_text(5, 40, "WIFI Fail", robotron,
                          color565(220, 220, 220))
gc.collect()
srv = MicroWebSrv(webPath=".")
print(time.time() - t)
srv.Start()