This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| blueprint: | |
| name: Aqara H2 Wireless Switch (2 gang) — 2 Lights (Z2M MQTT) | |
| description: > | |
| Two lights via Aqara H2 wireless 2-gang switch over Zigbee2MQTT (raw MQTT trigger). | |
| Left rocker → Light 1, Right rocker → Light 2. | |
| • Single click → toggle on/off |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| blueprint: | |
| name: Aqara H2 Wireless Switch (2 gang) — 2 Lights (Z2M MQTT) | |
| description: > | |
| Two lights via Aqara H2 wireless 2-gang switch over Zigbee2MQTT (raw MQTT trigger). | |
| Left rocker → Light 1, Right rocker → Light 2. | |
| • Single click → toggle on/off |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| blueprint: | |
| name: Aqara H2 Wireless Switch (2 gang) — 2 Lights (Z2M MQTT) | |
| description: > | |
| Two lights via Aqara H2 wireless 2-gang switch over Zigbee2MQTT (raw MQTT trigger). | |
| Left rocker → Light 1, Right rocker → Light 2. | |
| • Single click → toggle on/off |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| blueprint: | |
| name: Aqara H2 Wireless Switch (2 gang) — 2 Lights + Dimming (Z2M MQTT) | |
| description: > | |
| Control two lights with an Aqara H2 wireless remote switch (2 gang) via | |
| Zigbee2MQTT, using a raw MQTT trigger (reads `action` from the topic | |
| payload). | |
| Left rocker → Light 1, Right rocker → Light 2. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| blueprint: | |
| name: Aqara H2 Wireless Switch (2 gang) — 2 Lights with Dimming (Z2M) | |
| description: > | |
| Control two lights with an Aqara H2 wireless remote switch (2 gang) via | |
| Zigbee2MQTT. | |
| Left rocker → Light 1, Right rocker → Light 2. | |
| • Single click → toggle the light |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "id": 892, | |
| "name": "Volvo V60", | |
| "vehicle_model_id": 19, | |
| "vehicle_model": { | |
| "id": 19, | |
| "make_id": 8, | |
| "name": "Model S", | |
| "body_type": "sedan", | |
| "production_years": null, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| fuImage.SaveAs(Request.PhysicalApplicationPath +"./images/"+ fuImage.FileName.ToString()); | |
| b = "./images/" + fuImage.FileName.ToString(); | |
| SqlCommand cmd = new SqlCommand("INSERT INTO Fruits (FruitName, FruitPrice, FruitImage) VALUES (@FruitName, @FruitPrice, @FruitImagePath)", con); | |
| cmd.Parameters.AddWithValue("@FruitName", txtFruitName.Text); | |
| cmd.Parameters.AddWithValue("@FruitPrice", txtFruitPrice.Text); | |
| cmd.Parameters.AddWithValue("@FruitImagePath", b.ToString()); | |
| cmd.ExecuteNonQuery(); | |
| gvFruits.DataBind(); |