from m5stack_ui import *
from socket import socket, AF_INET, SOCK_DGRAM
import time
import network
from m5stack import *
#from m5stack import lcd
from machine import Pin
from uiflow import *
screen = M5Screen()
screen.clean_screen()
screen.set_screen_bg_color(0xFFFFFF)
dstip = "TinyPicoのIP"
dstport = ポート番号
wlan = network.WLAN(network.STA_IF)
wlan.active(True)
if not wlan.isconnected():
print('connecting to network...')
wlan.connect('SSID', 'PASS')
while not wlan.isconnected():
pass
print('network config:', wlan.ifconfig())
print('network config:', wlan.ifconfig())
s = socket(AF_INET, SOCK_DGRAM)
#s.bind((dstip, dstport))
touch_button0 = M5Btn(text='Button', x=110, y=10, w=100, h=80, bg_c=0xFFFFFF, text_c=0x000000, font=FONT_MONT_14, parent=None)
touch_button1 = M5Btn(text='Button', x=10, y=80, w=100, h=80, bg_c=0xFFFFFF, text_c=0x000000, font=FONT_MONT_14, parent=None)
touch_button2 = M5Btn(text='Button', x=210, y=80, w=100, h=80, bg_c=0xFFFFFF, text_c=0x000000, font=FONT_MONT_14, parent=None)
touch_button3 = M5Btn(text='Button', x=110, y=150, w=100, h=80, bg_c=0xFFFFFF, text_c=0x000000, font=FONT_MONT_14, parent=None)
touch_button4 = M5Btn(text='Button', x=116, y=100, w=40, h=40, bg_c=0xFFFFFF, text_c=0x000000, font=FONT_MONT_14, parent=None)
touch_button5 = M5Btn(text='Button', x=165, y=100, w=40, h=40, bg_c=0xFFFFFF, text_c=0x000000, font=FONT_MONT_14, parent=None)
def touch_button0_pressed():
global data
data = "F"
def touch_button3_pressed():
global data
data = "B"
def touch_button1_pressed():
global data
data = "L"
def touch_button2_pressed():
global data
data = "R"
#touch_button0.pressed(touch_button0_pressed)
# ボタン"A" が「離された」時の処理
def touch_button0_released():
global data
data = "S"
def touch_button4_pressed():
global data
data = "on"
def touch_button5_pressed():
global data
data = "off"
#data = touch_button0.released(touch_button0_released)
data = "nane"
stamp = 0
while(True):
#global data
touch_button0.pressed(touch_button0_pressed)
touch_button1.pressed(touch_button1_pressed)
touch_button2.pressed(touch_button2_pressed)
touch_button3.pressed(touch_button3_pressed)
touch_button4.pressed(touch_button4_pressed)
touch_button5.pressed(touch_button5_pressed)
#data = "A"
touch_button0.released(touch_button0_released)
touch_button1.released(touch_button0_released)
touch_button2.released(touch_button0_released)
touch_button3.released(touch_button0_released)
s.sendto(data, (dstip, dstport))
print(data)
#print(Slider2.get_value())
time.sleep(0.1)