{"id":64,"date":"2024-11-05T10:12:13","date_gmt":"2024-11-05T10:12:13","guid":{"rendered":"https:\/\/myjetsonnano.hopto.org\/?p=64"},"modified":"2024-11-05T10:12:13","modified_gmt":"2024-11-05T10:12:13","slug":"uiflow2-atoms3u-rgb-example","status":"publish","type":"post","link":"https:\/\/myjetsonnano.perseus314.com\/index.php\/2024\/11\/05\/uiflow2-atoms3u-rgb-example\/","title":{"rendered":"UiFlow2 AtomS3U RGB example"},"content":{"rendered":"\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"394\" height=\"199\" src=\"https:\/\/myjetsonnano.perseus314.com\/wp-content\/uploads\/2024\/11\/image.png\" alt=\"\" class=\"wp-image-65\" srcset=\"https:\/\/myjetsonnano.perseus314.com\/wp-content\/uploads\/2024\/11\/image.png 394w, https:\/\/myjetsonnano.perseus314.com\/wp-content\/uploads\/2024\/11\/image-300x152.png 300w\" sizes=\"auto, (max-width: 394px) 100vw, 394px\" \/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"395\" height=\"264\" src=\"https:\/\/myjetsonnano.perseus314.com\/wp-content\/uploads\/2024\/11\/image-1.png\" alt=\"\" class=\"wp-image-66\" srcset=\"https:\/\/myjetsonnano.perseus314.com\/wp-content\/uploads\/2024\/11\/image-1.png 395w, https:\/\/myjetsonnano.perseus314.com\/wp-content\/uploads\/2024\/11\/image-1-300x201.png 300w\" sizes=\"auto, (max-width: 395px) 100vw, 395px\" \/><\/figure>\n\n\n\n<pre class=\"wp-block-code\"><code>import os, sys, io\nimport M5\nfrom M5 import *\nfrom hardware import *\nimport time\n\n\n\nrgb = None\n\n\nnColour = None\nx = None\n\n\ndef btnA_wasClicked_event(state):\n  global rgb, nColour, x\n  nColour = nColour + 1\n  if nColour == 3:\n    nColour = 0\n  if nColour == 0:\n    rgb.set_color(0, 0xff0000)\n  if nColour == 1:\n    rgb.set_color(0, 0xff6600)\n  if nColour == 2:\n    rgb.set_color(0, 0xffff00)\n\n\ndef setup():\n  global rgb, nColour, x\n\n  M5.begin()\n  BtnA.setCallback(type=BtnA.CB_TYPE.WAS_CLICKED, cb=btnA_wasClicked_event)\n\n  rgb = RGB()\n  rgb.set_brightness(70)\n\n\ndef loop():\n  global rgb, nColour, x\n  M5.update()\n  rgb.set_color(0, 0x33ffff)\n  time.sleep(5)\n  rgb.set_color(0, 0xff6600)\n  time.sleep(5)\n\n\nif __name__ == '__main__':\n  try:\n    setup()\n    while True:\n      loop()\n  except (Exception, KeyboardInterrupt) as e:\n    try:\n      from utility import print_error_msg\n      print_error_msg(e)\n    except ImportError:\n      print(\"please update to latest firmware\")\n<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":67,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8,10],"tags":[],"class_list":["post-64","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-atoms3u","category-uiflow2"],"_links":{"self":[{"href":"https:\/\/myjetsonnano.perseus314.com\/index.php\/wp-json\/wp\/v2\/posts\/64","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/myjetsonnano.perseus314.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/myjetsonnano.perseus314.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/myjetsonnano.perseus314.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/myjetsonnano.perseus314.com\/index.php\/wp-json\/wp\/v2\/comments?post=64"}],"version-history":[{"count":1,"href":"https:\/\/myjetsonnano.perseus314.com\/index.php\/wp-json\/wp\/v2\/posts\/64\/revisions"}],"predecessor-version":[{"id":68,"href":"https:\/\/myjetsonnano.perseus314.com\/index.php\/wp-json\/wp\/v2\/posts\/64\/revisions\/68"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/myjetsonnano.perseus314.com\/index.php\/wp-json\/wp\/v2\/media\/67"}],"wp:attachment":[{"href":"https:\/\/myjetsonnano.perseus314.com\/index.php\/wp-json\/wp\/v2\/media?parent=64"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/myjetsonnano.perseus314.com\/index.php\/wp-json\/wp\/v2\/categories?post=64"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/myjetsonnano.perseus314.com\/index.php\/wp-json\/wp\/v2\/tags?post=64"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}