
Product
Announcing Precomputed Reachability Analysis in Socket
Socket’s precomputed reachability slashes false positives by flagging up to 80% of vulnerabilities as irrelevant, with no setup and instant results.
An async Python library for controlling Stone Connect WiFi electric heaters via their local HTTPS API.
pip install stone-connect
git clone https://github.com/tomasbedrich/stone-connect.git
cd stone-connect
pip install -e ".[dev]"
import asyncio
from stone_connect import StoneConnectHeater, OperationMode
async def main():
# Connect to your heater (replace with your heater's IP)
async with StoneConnectHeater("192.168.1.100") as heater:
# Get device information
info = await heater.get_info()
print(f"Connected to: {info.appliance_name}")
# Get current status
status = await heater.get_status()
print(f"Current temperature: {status.current_temperature}°C")
print(f"Target temperature: {status.set_point}°C")
# Set temperature to 22°C in manual mode
await heater.set_temperature(22.0, OperationMode.MANUAL)
# Switch to comfort mode
await heater.set_operation_mode(OperationMode.COMFORT)
if __name__ == "__main__":
asyncio.run(main())
This library is not officially associated with Stone Connect or any heater manufacturer. It is developed through reverse engineering of the public API for personal and educational use. Use at your own risk.
FAQs
Async Python library for controlling Stone Connect WiFi electric heaters
We found that stone-connect demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket’s precomputed reachability slashes false positives by flagging up to 80% of vulnerabilities as irrelevant, with no setup and instant results.
Product
Socket is launching experimental protection for Chrome extensions, scanning for malware and risky permissions to prevent silent supply chain attacks.
Product
Add secure dependency scanning to Claude Desktop with Socket MCP, a one-click extension that keeps your coding conversations safe from malicious packages.