element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Azure Sphere Starter Kit
  • Products
  • Dev Tools
  • Avnet Boards Community
  • Azure Sphere Starter Kit
  • More
  • Cancel
Azure Sphere Starter Kit
Forum Any remote deployment blog for Azure Sphere?
  • Blog
  • Forum
  • Documents
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Azure Sphere Starter Kit to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Verified Answer
  • Replies 6 replies
  • Answers 2 answers
  • Subscribers 47 subscribers
  • Views 917 views
  • Users 0 members are here
Related

Any remote deployment blog for Azure Sphere?

xeonaj
xeonaj over 5 years ago

Are there any blogs related to remote deployment on Azure Sphere?

And why is the azure sphere IoT Hub telemetry so slow in drawing the graph any way to fasten the data transfer between the hub and device and get telemetry graph faster?

 

Hey peterfenn , bwilless can you guys help me I simple need to run the Out-of-box part 3 without a computer.

  • Sign in to reply
  • Cancel
  • Sean_Miller
    0 Sean_Miller over 5 years ago

    This is the one I used:

    Avnet's Azure Sphere Starter-Kit (Out of Box Demo) Part 3 of 3

     

    I the example code, you can modify the timing around Line 20 of build_options.h.  I believe the default is 1 second.  I made mine longer because the free trial was over and it can rack up quickly when developing.

     

    // Defines how quickly the accelerator data is read and reported
    #define ACCEL_READ_PERIOD_SECONDS 5  //originally 1 (second) this is how often it sends messages.
    #define ACCEL_READ_PERIOD_NANO_SECONDS 0

     

     

    This value may not take decimals, though.

     

    The communication strategy is to send a block of JSON versus streaming bytes through a websocket.  So, I'm not sure how much quicker you can get with this example.

     

    See ya',

    Sean

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
  • xeonaj
    0 xeonaj over 5 years ago in reply to Sean_Miller

    Thank You, I see that it sends data within seconds but the IoT Hub / Central telemetry data is plotted very slowly.

     

    And have you got any Idea with cloud deployment I want to do it, I am trying different ways but till now nothing worked for me.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Sean_Miller
    0 Sean_Miller over 5 years ago in reply to xeonaj

    I'm not understanding this question:  "And have you got any Idea with cloud deployment I want to do it, I am trying different ways but till now nothing worked for me."

     

    Can you rephrase it?

     

    For info, here is my blog for the challenge - still under works:

     

    https://www.element14.com/community/groups/azuresphere/blog/2019/10/17/avnet-azure-sphere-coke-drum-health-monitoring-iot-ai

     

    It has some good code tweaks for additional components and external API data calls.

    Sean

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • xeonaj
    0 xeonaj over 5 years ago

    HEY GUYS I FIGURED IT OUT I WAS TOTALLY WRONG ABOUT SOMETHINGS BECAUSE I WASN'T ABLE TO SEE SOME EXPECTED OUTPUT I THOUGHT IT WASN'T WORKING IN FACT IT WAS!

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Reject Answer
    • Cancel
  • bwilless
    0 bwilless over 5 years ago

    Alphons,

     

    Looks like you made some progress.  In general telemetry data showing up on IoT Central is slow.  We've looked into ways to improve the performance but have never found any way to make it faster.

     

    Regarding deployments . . . .

     

    Once you sideload your application onto your device, it will remain there until you remove or overwrite it, and it will automatically start on powerup.  So you could just move your device from your development environment to your deployment environment and it should work.  However, one of the nice features of Azure Sphere is the OTA updates.  I recommend you set that up, it's easy.  I don't have a blog for this feature, but plan to write one up in the future.

     

    The instructions for OTA deployments is here: https://docs.microsoft.com/en-us/azure-sphere/deployment/create-a-deployment

     

    Brian

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
  • xeonaj
    0 xeonaj over 5 years ago in reply to bwilless

    In general telemetry data showing up on IoT Central is slow.  We've looked into ways to improve the performance but have never found any way to make it faster.

    Yeah I tried it many times but didn't work!

    Once you sideload your application onto your device, it will remain there until you remove or overwrite it, and it will automatically start on powerup.  So you could just move your device from your development environment to your deployment environment and it should work.

    I wasn't aware of this I had done this in the first part of Out of the box demo but really forgot about it and I was stupidly searching how to do it.

    The instructions for OTA deployments is here: https://docs.microsoft.com/en-us/azure-sphere/deployment/create-a-deployment

    Yeah I had done the OTA deployments its fun and easy!

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube