RVR+
RVR+ RVR+ Class Pack RVR+ Class Pack (1 robot) (12 robots: 24 students) (18 robots: 36 students) RVR+ is Sphero’s most customizable robot, built for middle and high school classroo ms where students are ready to tackle real-world challenges through code. Use it to apply the Pythagorean theorem with sensor data, learn about autonomous vehicles, build delivery bots, and a range of applied programming challenges. Students start with block-based coding in the Sphero Edu app, then progress to text programming and the Sphero Public SDK. RVR+ connects with third-party hardware like Raspberry Pi or micro:bit, making it a flexible mobile platform for robotics, engineering, and data-driven experiments. And that’s just the start. RVR+ is your gateway to deeper learning across STEM, CTE, and beyond. ♥ Why Educators Love RVR+: READY TO GO & ENDLESSLY CUSTOMIZABLE: No assembly, no delay—just connect and program. RVR+ is ready for simple exploration or custom builds that expand with programmable sensors, hardware, and modular add-ons. REAL SENSORS, REAL DATA, REAL THINKING: Includes a color sensor, light sensor, IR, gyroscope, and accelerometer so students can build programs that interact with their environment in real time. BEGINNER TO ADVANCED PROGRAMMERS: Start with blocks, then move into JavaScript or Python. With the Public SDK and third-party hardware integrations, you can take even more creative control. MORE THAN STEM: From robotics and environmental science to geometry and logic, RVR+ brings concepts to life across computer science, math, and engineering and empowers students to build what they imagine. Access lessons and resources for RVR+ on Sphero Central. BUILDS FOUNDATIONS FOR AI LITERACY: Through coding and debugging, students build programming and critical thinking skills to understand how AI works and use it responsibly—covering algorithms, data structures, pattern recognition, logic, conditional reasoning, and computer science fundamentals. Built for middle and high school classrooms and robotics programs, the RVR+ Class Pack (12 robots) gives students hands-on experience with autonomous vehicles, sensor data, real-world coding challenges, and more. With 12 RVR+ robots, your class can work in pairs or small groups to explore computer science, engineering, and design thinking. Students start with block-based coding in the Sphero Edu app, then progress to text programming and the Sphero Public SDK. RVR+ connects with third-party hardware like Raspberry Pi or micro:bit, making it a versatile mobile platform for cross-curricular learning and advanced engineering projects. This pack is your all-in-one solution for collaborative, standards-aligned instruction across STEM, CTE, and beyond. ♥ Why Educators Love the RVR+ Class Pack: BUILT FOR THE CLASSROOM: Includes 12 RVR+ robots, accessories, and resources to support up to 24 students—perfect for pair programming and team challenges. Swappable, rechargeable batteries keep programs, inventions, and classroom projects running without downtime. REAL SENSORS, REAL DATA, REAL THINKING: Each robot features a color sensor, light sensor, IR, gyroscope, and accelerometer, giving students tools to interact with their environment in real time. BEGINNER TO ADVANCED PROGRAMMERS: Start with blocks, then move to JavaScript or Python. With the Public SDK and third-party hardware integrations, you can take even more creative control. STANDARDS-ALIGNED & CROSS-CURRICULAR: Connect computer science, math, engineering, and more through free educator resources, challenges, and lesson plans in Sphero Edu and Sphero Central. BUILDS FOUNDATIONS FOR AI LITERACY: Through coding and debugging, students build programming and critical thinking skills to understand how AI works and use it responsibly—covering algorithms, data structures, pattern recognition, logic, conditional reasoning, and computer science fundamentals. Built for middle and high school classrooms and robotics programs, the RVR+ Class Pack (18 robots) gives students hands-on experience with autonomous vehicles, sensor data, real-world coding challenges, and more. With 18 RVR+ robots, your class can work in pairs or small groups to explore computer science, engineering, and design thinking. Students start with block-based programming in the Sphero Edu app, then transition to JavaScript, Python, or the Sphero Public SDK. RVR+ also connects with third-party hardware like Raspberry Pi or micro:bit, making it a versatile mobile platform for cross-curricular learning and advanced engineering projects. This pack is your all-in-one solution for collaborative, standards-aligned instruction across STEM, CTE, and beyond. ♥ Why Educators Love the RVR+ Class Pack: BUILT FOR THE CLASSROOM: Includes 18 RVR+ robots, accessories, and resources to support up to 36 students—perfect for pair programming and team challenges. Swappable, rechargeable batteries keep programs, inventions, and classroom projects running without downtime. REAL SENSORS, REAL DATA, REAL THINKING: Each robot features a color sensor, light sensor, IR, gyroscope, and accelerometer, giving students tools to interact with their environment in real time. BEGINNER TO ADVANCED PROGRAMMERS: Start with blocks, then move into JavaScript or Python. With the Public SDK and third-party hardware integrations, you can take even more creative control. STANDARDS-ALIGNED & CROSS-CURRICULAR: Connect computer science, math, engineering, and more through free educator resources, challenges, and lesson plans in Sphero Edu and Sphero Central. BUILDS FOUNDATIONS FOR AI LITERACY: Through coding and debugging, students build programming and critical thinking skills to understand how AI works and use it responsibly—covering algorithms, data structures, pattern recognition, logic, conditional reasoning, and computer science fundamentals. RVR+ 1 RVR+ programmable robot 1 removable and rechargeable battery 1 key to unlock battery compartment 1 USB-a charging cable 1 mounting plate 1 Blueprint plate 1 set of 5 color cards RVR+ Class Pack (12 Robots: 24 Students) 12 RVR+ programmable robots 12 removable and rechargeable batteries 12 keys to unlock battery compartment 12 USB-a charging cables 12 mounting plates 12 Blueprint plates 12 sets of 5 color cards (60) 2 quick start guides 2 getting started cards 2 Educator Guides RVR+ Class Pack (18 Robots: 36 Students) 18 RVR+ programmable robots 18 removable and rechargeable batteries 18 keys to unlock battery compartment 18 USB-a charging cables 18 mounting plates 18 Blueprint plates 18 sets of 5 color cards (90) 3 quick start guides 3 getting started cards 3 Educator Guides // Shared SKU Map var skuMap = { '940-0601': { title: 'vtitle01', subtitle: 'vsub01', description: 'vdescr01', included: 'vwhats01' }, '940-0625': { title: 'vtitle02', subtitle: 'vsub02', description: 'vdescr02', included: 'vwhats02' }, '940-0635': { title: 'vtitle03', subtitle: 'vsub03', description: 'vdescr03', included: 'vwhats03' }, // Add more mappings as needed }; // Update title based on SKU var skuTitleElement = document.querySelector('.product-meta__sku-number'); var titleElement = document.querySelector('.product-meta__title'); function updateTitleBasedOnSKU(skuMap) { var skuNumberTitle = skuTitleElement.textContent.trim(); if (skuMap.hasOwnProperty(skuNumberTitle)) { var divId = skuMap[skuNumberTitle].title; var divContent = document.getElementById(divId); if (divContent) { titleElement.textContent = divContent.textContent.trim(); var inlineStyles = divContent.getAttribute('style'); titleElement.setAttribute('style', inlineStyles); divContent.style.display = 'block'; } } } updateTitleBasedOnSKU(skuMap); // Update subtitle based on SKU var skuSubtitleElement = document.querySelector('.product-meta__sku-number'); var skuElement = document.querySelector('.product-meta__sku'); function updateSubtitleBasedOnSKU(skuMap) { var skuNumberSubtitle = skuSubtitleElement.textContent.trim(); if (skuMap.hasOwnProperty(skuNumberSubtitle)) { var divId = skuMap[skuNumberSubtitle].subtitle; var subtitleDiv = document.getElementById(divId); if (subtitleDiv) { var existingSubElement = document.querySelector('.product-meta__sub'); var newDivElement = document.createElement('div'); newDivElement.className = 'product-meta__sub'; newDivElement.innerHTML = subtitleDiv.innerHTML; newDivElement.style.display = 'block'; if (existingSubElement) { existingSubElement.replaceWith(newDivElement); } else { skuElement.insertAdjacentElement('beforebegin', newDivElement); } } } } updateSubtitleBasedOnSKU(skuMap); // Update description based on SKU var skuDescriptionElement = document.querySelector('.product-meta__sku-number'); var descriptionContentElement = document.querySelector('.product-meta__description-content'); function updateDescriptionBasedOnSKU(skuMap) { var skuNumberDescription = skuDescriptionElement.textContent.trim(); if (skuMap.hasOwnProperty(skuNumberDescription)) { var divId = skuMap[skuNumberDescription].description; var descriptionDiv = document.getElementById(divId); if (descriptionDiv && descriptionContentElement) { var existingDescriptionElement = document.querySelector('.product-meta__description-content .btdescr'); var newDescriptionElement = document.createElement('div'); newDescriptionElement.className = 'btdescr'; newDescriptionElement.innerHTML = descriptionDiv.innerHTML; newDescriptionElement.style.display = 'block'; if (existingDescriptionElement) { existingDescriptionElement.replaceWith(newDescriptionElement); } else { descriptionContentElement.appendChild(newDescriptionElement); } } } } updateDescriptionBasedOnSKU(skuMap);
More you might like
Related
Sphero RVR Treads Pair For Sphero RVR Sphero RVR+ Programmab
Related
Sphero RVR Treads Pair For Sphero RVR Sphero RVR+ Programmab
Related
Sphero RVR Top Cover For Sphero RVR Sphero RVR+ Programmable
Related