SFT 2026-27 Additional Resource HUB for Software and Hardware Engineering plus Robotics
Resource Hub for Students and Educators
Welcome to our Resource Hub, a dedicated section designed to support students and educators in their projects. This space serves as a collection of valuable tools, guides, and examples to inspire and assist in both software and hardware development. Whether you're exploring modern methodologies, delving into cutting-edge technologies, or seeking inspiration from prior successes, this hub is here to help.
What You'll Find Here
1A- Agile Methodology Overview
1B- Agile Methodology with AI & ML
1C- Agile Tutorial for Highschool Students
2A- Engineering Methodology
2B - Breaking Down the Big Problem
3- Robot Resources and Other Key Info - (More on the Way).
3A - General Requirements for all Robots and Research for Robot Projects
3B - General Internal Robot Telemetry and Logging Files
3C - VR Simulation and Robotics (LLASO Project 1 and LLASO Project 2 )
3D - Building the Story Board on the moon for NASA
4A- Artificial Intelligence (AI) and Machine Learning (ML) Resources
Explore handpicked resources focused on AI and ML. These cutting-edge technologies are transforming industries, and we’ve curated materials to help you understand and implement them in your projects. Whether you're building predictive models or experimenting with automation, this section will guide you through the basics and beyond.
5- Limited Project Examples from Schools ( Target 2027 )
For inspiration, we’ve included projects from previous years that showcase innovative solutions from past students and educators. These examples demonstrate the application of methodologies and technologies in real-world scenarios, providing a strong starting point for your own ideas. Over time, this section will expand to include additional projects, tailored to the needs of the 2026/27 academic year and beyond.
Stay tuned for more updates—and happy innovating!
import { BlocksRenderer } from '@strapi/blocks-react-renderer';
// Define how your custom modifiers should look
const customModifiers = {
code: ({ children }) => <code>{children}</code>,
blueColor: ({ children }) => <span style={{ color: 'blue' }}>{children}</span>,
};
export default function MyPage({ content }) {
return (
<BlocksRenderer
content={content}
modifiers={customModifiers}
/>
);
}
[
{
"type": "paragraph",
"children": [
{
"type": "text",
"text": "npm run develop",
"code": true
},
{
"type": "text",
"text": " — Stay tuned for more updates—and happy innovating!",
"blueColor": true
}
]
}
]










