{"id":4069,"date":"2024-08-23T08:44:26","date_gmt":"2024-08-23T15:44:26","guid":{"rendered":"https:\/\/www.donluc.com\/?p=4069"},"modified":"2024-08-23T08:44:26","modified_gmt":"2024-08-23T15:44:26","slug":"project-30-unihiker-accelerometer-and-gyroscope-mk01","status":"publish","type":"post","link":"https:\/\/www.donluc.com\/?p=4069","title":{"rendered":"Project #30 &#8211; UNIHIKER &#8211; Accelerometer and Gyroscope &#8211; Mk01"},"content":{"rendered":"<div style=\"width: 720px;\" class=\"wp-video\"><video class=\"wp-video-shortcode\" id=\"video-4069-1\" width=\"720\" height=\"480\" preload=\"metadata\" controls=\"controls\"><source type=\"video\/mp4\" src=\"https:\/\/www.donluc.com\/wp-content\/uploads\/2024\/08\/DL2408Mk03W.mp4?_=1\" \/><a href=\"https:\/\/www.donluc.com\/wp-content\/uploads\/2024\/08\/DL2408Mk03W.mp4\">https:\/\/www.donluc.com\/wp-content\/uploads\/2024\/08\/DL2408Mk03W.mp4<\/a><\/video><\/div>\n<p>&#8212;&#8212;<\/p>\n<p>#DonLucElectronics #DonLuc #UNIHIKER #Display #IoT #Project #Debian #Thonny #Programming #Electronics #Microcontrollers #Consultant<\/p>\n<p>&#8212;&#8212;<\/p>\n<p><a href=\"https:\/\/www.donluc.com\/wp-content\/uploads\/2024\/08\/DL2408Mk03a.png\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.donluc.com\/wp-content\/uploads\/2024\/08\/DL2408Mk03a.png\" alt=\"Accelerometer and Gyroscope\" width=\"720\" height=\"635\" class=\"alignnone size-full wp-image-4071\" srcset=\"https:\/\/www.donluc.com\/wp-content\/uploads\/2024\/08\/DL2408Mk03a.png 720w, https:\/\/www.donluc.com\/wp-content\/uploads\/2024\/08\/DL2408Mk03a-300x265.png 300w\" sizes=\"auto, (max-width: 720px) 100vw, 720px\" \/><\/a><\/p>\n<p>&#8212;&#8212;<\/p>\n<p><a href=\"https:\/\/www.donluc.com\/wp-content\/uploads\/2024\/08\/DL2408Mk03b.png\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.donluc.com\/wp-content\/uploads\/2024\/08\/DL2408Mk03b.png\" alt=\"Accelerometer and Gyroscope\" width=\"720\" height=\"540\" class=\"alignnone size-full wp-image-4072\" srcset=\"https:\/\/www.donluc.com\/wp-content\/uploads\/2024\/08\/DL2408Mk03b.png 720w, https:\/\/www.donluc.com\/wp-content\/uploads\/2024\/08\/DL2408Mk03b-300x225.png 300w\" sizes=\"auto, (max-width: 720px) 100vw, 720px\" \/><\/a><\/p>\n<p>&#8212;&#8212;<\/p>\n<p><a href=\"https:\/\/www.donluc.com\/wp-content\/uploads\/2024\/08\/DL2408Mk03c.png\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.donluc.com\/wp-content\/uploads\/2024\/08\/DL2408Mk03c.png\" alt=\"Accelerometer and Gyroscope\" width=\"720\" height=\"540\" class=\"alignnone size-full wp-image-4073\" srcset=\"https:\/\/www.donluc.com\/wp-content\/uploads\/2024\/08\/DL2408Mk03c.png 720w, https:\/\/www.donluc.com\/wp-content\/uploads\/2024\/08\/DL2408Mk03c-300x225.png 300w\" sizes=\"auto, (max-width: 720px) 100vw, 720px\" \/><\/a><\/p>\n<p>&#8212;&#8212;<\/p>\n<p><strong>UNIHIKER Accelerometer and Gyroscope<\/strong><\/p>\n<p>The UNIHIKER&#8217;s back panel is equipped with a 6-axis accelerometer-gyroscope sensor, capable of reading the X, Y, and Z values of acceleration individually, as well as the total strength in X, Y, and Z directions, and the X, Y, and Z values of the gyroscope.<\/p>\n<p><strong>DL2408Mk03<\/strong><\/p>\n<p>1 x UNIHIKER<br \/>\n1 x USB Battery Pack<br \/>\n1 x USB 3.1 Cable A to C<\/p>\n<p><strong>DL2408Mk03p<\/strong><\/p>\n<p><strong>DL2408Mk03p.py<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-title=\"\">\r\n&quot;&quot;&quot;\r\n****** Don Luc Electronics \u00a9 ******\r\nSoftware Version Information\r\nProject #30 - UNIHIKER - Accelerometer and Gyroscope - Mk01\r\n30-01\r\nDL2408Mk03p.py\r\nDL2408Mk03\r\n1 x UNIHIKER\r\n1 x USB Battery Pack\r\n1 x USB 3.1 Cable A to C\r\n\r\n-*- coding: utf-8 -*-\r\n&quot;&quot;&quot;\r\n# Import the unihiker library\r\nfrom unihiker import GUI\r\n\r\n# Import the time library\r\nimport time\r\n\r\n# Import the Board module from the pinpong.board package \r\nfrom pinpong.board import Board\r\n\r\n# Import all modules from the pinpong.extension.unihiker package\r\nfrom pinpong.extension.unihiker import *\r\n\r\n# Initialize the board by selecting the board type and port number;\r\n# if not specified, the program will automatically detect it\r\nBoard().begin()\r\n\r\n# Instantiate the GUI class and create a gui object\r\ngui = GUI()\r\n\r\n# Display the initial background image &#039;dlemk02&#039;\r\nimg = gui.draw_image(x=0, y=0, w=240, h=320, image=&#039;dlemk02.png&#039;)\r\n\r\n# Accelerometer\r\n# Display the initial Accelerometer X valueAX\r\nvalueAX = gui.draw_text(x=60, y=145, text=&#039;0&#039;, font_size=10)\r\n\r\n# Display the initial Accelerometer Y valueAY\r\nvalueAY = gui.draw_text(x=60, y=170, text=&#039;0&#039;, font_size=10)\r\n\r\n# Display the initial Accelerometer Z valueAZ\r\nvalueAZ = gui.draw_text(x=60, y=195, text=&#039;0&#039;, font_size=10)\r\n\r\n# Gyroscope\r\n# Display the initial Gyroscope X valueGX\r\nvalueGX = gui.draw_text(x=60, y=240, text=&#039;0&#039;, font_size=10)\r\n\r\n# Display the initial Gyroscope Y valueGY\r\nvalueGY = gui.draw_text(x=60, y=260, text=&#039;0&#039;, font_size=10)\r\n\r\n# Display the initial Gyroscope Z valueGZ\r\nvalueGZ = gui.draw_text(x=60, y=285, text=&#039;0&#039;, font_size=10)\r\n\r\nwhile True:\r\n    \r\n    # Accelerometer\r\n    # Display the Accelerometer X\r\n    AX = accelerometer.get_x()\r\n    # Update the displayed Accelerometer X valueAX\r\n    valueAX.config(text=AX)\r\n    # Display the Accelerometer Y\r\n    AY = accelerometer.get_y()\r\n    # Update the displayed Accelerometer Y valueAY\r\n    valueAY.config(text=AY)\r\n    # Display the Accelerometer Z\r\n    AZ = accelerometer.get_z()\r\n    # Update the displayed Accelerometer Z valueAZ\r\n    valueAZ.config(text=AZ)\r\n    \r\n    # Gyroscope\r\n    # Display the Gyroscope X\r\n    GX = gyroscope.get_x()\r\n    # Update the displayed Gyroscope X valueAX\r\n    valueGX.config(text=GX)\r\n    # Display the Gyroscope Y\r\n    GY = gyroscope.get_y()\r\n    # Update the displayed Gyroscope Y valueAY\r\n    valueGY.config(text=GY)\r\n    # Display the Gyroscope Z\r\n    GZ = gyroscope.get_z()\r\n    # Update the displayed Gyroscope Z valueAZ\r\n    valueGZ.config(text=GZ)\r\n\r\n    # Delay for 1 second to keep the screen content displayed for a longer time\r\n    time.sleep(1)\r\n<\/pre>\n<p>&#8212;&#8212;<\/p>\n<p><strong>People can contact us:<\/strong> https:\/\/www.donluc.com\/?page_id=1927<\/p>\n<p><strong>Teacher, Instructor, E-Mentor, R&#038;D and Consulting<\/strong><\/p>\n<ul>\n<li>Programming Language<\/li>\n<li>Single-Board Microcontrollers (PIC, Arduino, Raspberry Pi, Arm, Silicon Labs, Espressif, Etc&#8230;)<\/li>\n<li>IoT<\/li>\n<li>Wireless (Radio Frequency, Bluetooth, WiFi, Etc&#8230;)<\/li>\n<li>Robotics<\/li>\n<li>Automation<\/li>\n<li>Camera and Video Capture Receiver Stationary, Wheel\/Tank and Underwater Vehicle<\/li>\n<li>Unmanned Vehicles Terrestrial and Marine<\/li>\n<li>Machine Learning<\/li>\n<li>Artificial Intelligence (AI)<\/li>\n<li>RTOS<\/li>\n<li>Sensors, eHealth Sensors, Biosensor, and Biometric<\/li>\n<li>Research &#038; Development (R &#038; D)<\/li>\n<li>Consulting<\/li>\n<\/ul>\n<p><strong>Follow Us<\/strong><\/p>\n<p><strong>Luc Paquin \u2013 Curriculum Vitae &#8211; 2024<\/strong><br \/>\nhttps:\/\/www.donluc.com\/luc\/<\/p>\n<p><strong>Web:<\/strong> https:\/\/www.donluc.com\/<br \/>\n<strong>Facebook:<\/strong> https:\/\/www.facebook.com\/neosteam.labs.9\/<br \/>\n<strong>YouTube:<\/strong> https:\/\/www.youtube.com\/@thesass2063<br \/>\n<strong>Twitter:<\/strong> https:\/\/twitter.com\/labs_steam<br \/>\n<strong>Pinterest:<\/strong> https:\/\/www.pinterest.com\/NeoSteamLabs\/<br \/>\n<strong>Instagram:<\/strong> https:\/\/www.instagram.com\/neosteamlabs\/<br \/>\n<strong>DFRobot Luc.Paquin:<\/strong> https:\/\/edu.dfrobot.com\/dashboard\/makelogs<br \/>\n<strong>Hackster.io:<\/strong> https:\/\/www.hackster.io\/neosteam-labs<br \/>\n<strong>LinkedIn:<\/strong> https:\/\/www.linkedin.com\/in\/jlucpaquin\/<\/p>\n<p><strong>Don Luc<\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>&#8212;&#8212; #DonLucElectronics #DonLuc #UNIHIKER #Display #IoT #Project #Debian #Thonny #Programming #Electronics #Microcontrollers #Consultant &#8212;&#8212; &#8212;&#8212; &#8212;&#8212; &#8212;&#8212; UNIHIKER Accelerometer and Gyroscope The UNIHIKER&#8217;s back panel is equipped with a 6-axis accelerometer-gyroscope sensor, capable of reading the X, Y, and Z values of acceleration individually, as well as the total strength in X, Y, and Z &#8230; <a title=\"Project #30 &#8211; UNIHIKER &#8211; Accelerometer and Gyroscope &#8211; Mk01\" class=\"read-more\" href=\"https:\/\/www.donluc.com\/?p=4069\" aria-label=\"Read more about Project #30 &#8211; UNIHIKER &#8211; Accelerometer and Gyroscope &#8211; Mk01\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[346,49,353,317,38,59,115,5,347,287,10,348],"tags":[251,352,92,102,4,354,87,19,85,252,24,9,27,33,34,108],"class_list":["post-4069","post","type-post","status-publish","format-standard","hentry","category-uunihiker","category-consultant","category-debian","category-dfrobot","category-digitalelectronics","category-fritzing","category-e-mentor","category-microcontrollers","category-thonny","category-program","category-projects","category-unihiker","tag-accelerometer","tag-accelerometer-and-gyroscope","tag-battery","tag-components","tag-consultant","tag-debian","tag-display","tag-electronics","tag-fritzing","tag-gyroscope","tag-microcontroller","tag-programming","tag-projects-2","tag-technology","tag-video-blog","tag-vlog"],"_links":{"self":[{"href":"https:\/\/www.donluc.com\/index.php?rest_route=\/wp\/v2\/posts\/4069","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.donluc.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.donluc.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.donluc.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.donluc.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=4069"}],"version-history":[{"count":2,"href":"https:\/\/www.donluc.com\/index.php?rest_route=\/wp\/v2\/posts\/4069\/revisions"}],"predecessor-version":[{"id":4075,"href":"https:\/\/www.donluc.com\/index.php?rest_route=\/wp\/v2\/posts\/4069\/revisions\/4075"}],"wp:attachment":[{"href":"https:\/\/www.donluc.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=4069"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.donluc.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=4069"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.donluc.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=4069"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}