请选择 进入手机版 | 继续访问电脑版

『瀚思彼岸』» 智能家居技术论坛

 找回密码
 立即注册
查看: 13303|回复: 31

花了点时间对TileBoard做了些美化

  [复制链接]

25

主题

688

帖子

3630

积分

论坛元老

Rank: 8Rank: 8

积分
3630
金钱
2937
HASS币
219

活跃会员

发表于 2018-8-10 16:45:40 | 显示全部楼层 |阅读模式
本帖最后由 aktifin 于 2018-8-12 18:07 编辑

修改了日期的格式,用图片代替了色块,感觉好看了一些
QQ浏览器截图20180810164124.png


对ie11的显示做了下适配,把尘封已久得surfaceRT拿出来,弄成了控制中心 微信图片_20180812180608.jpg
/*
挖掘了隐藏的参数,启用了自定义css
*/


var CONFIG = {
   customTheme: null, // CUSTOM_THEMES.TRANSPARENT, CUSTOM_THEMES.MOBILE, CUSTOM_THEMES.COMPACT, CUSTOM_THEMES.HOMEKIT, CUSTOM_THEMES.WINPHONE, CUSTOM_THEMES.WIN95
   transition: TRANSITIONS.ANIMATED_GPU, //ANIMATED or SIMPLE (better perfomance)
   entitySize: ENTITY_SIZES.NORMAL, //SMALL, BIG are available
   tileSize: 150,
   tileMargin: 6,
   serverUrl: "xxxxxx",
   wsUrl: "xxxxxx",
   passwordType: PASSWORD_TYPES.PROMPT_AND_SAVE,
   //password: null,
   //googleApiKey: "XXXXXXXXXX", // Required if you are using Google Maps for device tracker
   debug: false, // Prints entities and state change info to the console.
   // next fields are optional
   events: [],
   timeFormat: 12,
   menuPosition: MENU_POSITIONS.LEFT, // or BOTTOM
   hideScrollbar: false, // horizontal scrollbar
   groupsAlign: GROUP_ALIGNS.HORIZONTALLY, // or VERTICALLY

   header: { // [url=https://github.com/resoai/TileBoard/wiki/Header-configuration]https://github.com/resoai/TileBoard/wiki/Header-configuration[/url]
      styles: {
         padding: '30px 130px 0',
         fontSize: '28px'
      },
      right: [
         {
            type: HEADER_ITEMS.CUSTOM_HTML,
            html: '<b> 智能家庭控制中心 - RokeySun</b>',
            styles: {
            margin: '20px 0 0'
            }
         },
                 {
                 type: HEADER_ITEMS.WEATHER,
                 styles: {
                    float: 'right',
                    margin: '10px',
                 },
                 icon: '&sensor.heweather_cond_txt.state',
                 icons: {
                                                          '晴': 'clear',
                                                          '多云': 'cloudy',
                                                          '毛毛雨': 'rain',
                                                          '小雨': 'rain',
                                                          '中雨': 'rain',
                                                          '大雨': 'rain',
                                                          '阵雨': 'rain',
                                                          '极端降雨': 'rain',
                                                          '暴雨': 'rain',
                                                          '大暴雨': 'rain',
                                                          '特大暴雨': 'rain',
                                                          '强阵雨': 'rain',
                                                          '雷阵雨': 'rain',
                                                          '强雷阵雨': 'rain',                                                          
                                                          '雨夹雪': 'sleet',
                                                          '雨雪天气': 'sleet',
                                                          '阵雨夹雪': 'sleet',
                                                          '雷阵雨伴有冰雹': 'sleet',
                                                          '小雪': 'snow',
                                                          '中雪': 'snow',
                                                          '大雪': 'snow',
                                                          '暴雪': 'snow',
                                                          '阵雪': 'snow',
                                                          '有风': 'hazy',
                                                          '微风': 'hazy',
                                                          '和风': 'hazy',
                                                          '清风': 'hazy',
                                                          '强风': 'hazy',
                                                          '疾风': 'hazy',
                                                          '清风': 'hazy',
                                                          '烈风': 'hazy',
                                                          '雾': 'fog',
                                                          '薄雾': 'fog',
                                                          '少云': 'partlycloudy',
                                                          '晴间多云': 'partlycloudy',                                                          
                                                          '阴': 'partlycloudy',
                 },
                 fields: {
                    temperature: '&sensor.heweather_tmp.state',
                    temperatureUnit: '&sensor.heweather_tmp.attributes.unit_of_measurement',
                    summary: '&sensor.heweather_cond_txt.state',
         }
      }
              ],
      left: [
         {
            type: HEADER_ITEMS.DATETIME,
            dateFormat: 'yyyy年 LLLL dd日 , EEEE', //https://docs.angularjs.org/api/ng/filter/date
         }
      ]
   },

   screensaver: {// optional. [url=https://github.com/resoai/TileBoard/wiki/Screensaver-configuration]https://github.com/resoai/TileBo ... saver-configuration[/url]
      timeout: 60, // after 5 mins of inactive
      slidesTimeout: 10, // 10s for one slide
      styles: { fontSize: '40px' },
      leftBottom: [
              { 
                      type: SCREENSAVER_ITEMS.DATETIME,
                      dateFormat: 'yyyy年 LLLL dd日 , EEEE',
              }
              ], // put datetime to the left-bottom of screensaver
      slides: [
         {
            bg: 'images/bg2.png',
            rightTop: [ // put text to the 2nd slide
               {
                  type: SCREENSAVER_ITEMS.CUSTOM_HTML,
                  html: "<b>智能家庭控制中心</b>",
                  styles: { fontSize: '40px' }
               }
            ]
         }
      ]
   },

   pages: [
      {
         title: 'Main page',
         bg: 'images/bg3.jpg',
         icon: 'mdi-home-outline', // home icon
         groups: [
            {
               title: '生活讯息',
               width: 2,
               height: 3,
               items: [
                  {
                     position: [0, 0],
                     width: 2,
                     type: TYPES.TEXT_LIST,
                     id: {}, // using empty object for an unknown id
                     state: false, // disable state element
                                         bg: 'images/bg01.jpg',
                                         bgOpacity: 1,
                     list: [
                        {
                           title: '日出日落',
                           icon: 'mdi-weather-sunny',
                           value: '&sensor.sun_state.state'
                        },
                        {
                           title: '月满月缺',
                           icon: 'mdi-weather-night',
                           value: '&sensor.moon_state.state'
                        },
                        {
                           title: '文化路路况',
                           icon: 'mdi-traffic-light',
                           value: '&sensor.wenhualu_traffic.state'
                        },
                        {
                           title: '青年大街路况',
                           icon: 'mdi-traffic-light',
                           value: '&sensor.qndj_traffic.state'
                        },
                        {
                           title: '和平大街路况',
                           icon: 'mdi-traffic-light',
                           value: '&sensor.hpdj_traffic.state'
                        },
                        {
                           title: '体重',
                           icon: 'mdi-scale-bathroom',
                           value: '&sensor.phicomm_balance.state kg'
                        }
                     ]
                  },
                  {
                                   position: [0, 1],
                                   type: TYPES.SENSOR,
                                   title: '客厅温度',
                                   height: 0.5,
                                   id: 'sensor.temperature_xxxxxx',
                                   bg: 'images/bg03.jpg',
                                   bgOpacity: 1,
                   unit: 'C', // override default entity unit
                   state: false, // hidding state
                  },
                  {
                                   position: [0, 1.5],
                                   type: TYPES.SENSOR,
                                   title: '客厅湿度',
                                   height: 0.5,
                                   id: 'sensor.humidity_xxxxx',
                                   bg: 'images/bg03_2.jpg',
                                   bgOpacity: 1,
                   unit: '%', // override default entity unit
                   state: false, // hidding state
                  },
                  {
                                   position: [1, 1],
                                   type: TYPES.SENSOR,
                                   title: '客厅亮度',
                                   height: 0.5,
                                   id: 'sensor.illumination_xxxxx',
                                   bg: 'images/bg03_1.jpg',
                                   bgOpacity: 1,
                   unit: 'Lm', // override default entity unit
                   state: false, // hidding state
                  },
                  {
                                   position: [1, 1.5],
                                   type: TYPES.SENSOR,
                                   title: '系统运行',
                                   height: 0.5,
                                   id: 'sensor.homeassistant',
                                   bg: 'images/bg03_4.jpg',
                                   bgOpacity: 1,
                   unit: 'h', // override default entity unit
                   state: false, // hidding state
                  },
                  {
                                   position: [0, 2],
                                   type: TYPES.SENSOR_ICON,
                                   title: '门传感器',
                                   //height: 0.5,
                                   width: 0.5,
                                   id: 'binary_sensor.door_window_sensor_xxxxx',
                                   bg: 'images/bg05.jpg',
                                   states: {
                                      on: "开",
                                      off: "关"
                                   },
                                   icons: {
                                      on: 'mdi-door-open',
                                      off: 'mdi-door-closed'
                                   },
                                  },
                  {
                                   position: [0.5, 2],
                                   type: TYPES.SENSOR_ICON,
                                   title: '窗传感器',
                                   width: 0.5,
                                   id: 'binary_sensor.door_window_sensor_xxxxxx',
                                   bg: 'images/bg05.jpg',
                                   states: {
                                      on: "开",
                                      off: "关"
                                   },
                                   icons: {
                                      on: 'mdi-window-open',
                                      off: 'mdi-window-closed'
                                   },
                  },
                  {
                                   position: [1, 2],
                                   type: TYPES.SENSOR_ICON,
                                   title: '人员活动',
                                   width: 0.5,
                                   id: 'binary_sensor.motion_sensor_xxxxxx',
                                   bg: 'images/bg05.jpg',
                                   states: {
                                      on: "有人",
                                      off: "无人"
                                   },
                                   icons: {
                                      on: 'mdi-run',
                                      off: 'mdi-human-male'
                                   },
                                  },
                  {
                                   position: [1.5, 2],
                                   type: TYPES.SENSOR_ICON,
                                   title: '煤气探测',
                                   width: 0.5,
                                   id: 'binary_sensor.natgas_sensor_xxxxxx',
                                   bg: 'images/bg05.jpg',
                                   states: {
                                      on: "危险",
                                      off: "安全"
                                   },
                                   icons: {
                                      on: 'mdi-security-close',
                                      off: 'mdi-verified'
                                   },
                                  },                                  
               ]
            },
            {
               title: '常用开关',
               width: 3,
               height: 3,
               items: [
                  {
                     position: [0, 0],
                     width: 0.75,
                     height: 0.75,
                     type: TYPES.SWITCH,
                     id: "switch.newair",
                                         bg: 'device/newair.jpg',
                                         classes: ["switch-bg"],
                                         states: {
                                            on: "开",
                                            off: "关",
                                         },
                     title: '新风',
                     icons: {'off': 'mdi-fan-off', 'on': 'mdi-fan mdi-spin'}
                  },
                  {
                     position: [0.75, 0],
                     width: 0.75,
                     height: 0.75,
                     type: TYPES.SWITCH,
                     id: "switch.jiashiqi",
                                         bg: 'device/jsq.jpg',
                                         classes: ["switch-bg"],
                                         states: {
                                            on: "开",
                                            off: "关",
                                         },
                     title: '加湿器',
                     icons: {'off': 'mdi-water-off', 'on': 'mdi-water'}
                  },
                  {
                     position: [1.5, 0],
                     width: 0.75,
                     height: 0.75,
                     type: TYPES.SWITCH,
                     id: "input_boolean.play_music",
                                         bg: 'device/music.jpg',
                                         classes: ["switch-bg"],
                                         states: {
                                            on: "开",
                                            off: "关",
                                         },
                     title: '背景音乐',
                     icons: {'off': 'mdi-music-off', 'on': 'mdi-music'}
                  },
                  {
                     position: [2.25, 0],
                     width: 0.75,
                     height: 0.75,
                     type: TYPES.SWITCH,
                     id: "light.gateway_light_xxxxxx",
                                         bg: 'device/gateway.jpg',
                                         //bgOpacity: 0.4,
                                         classes: ["switch-bg"],
                                         states: {
                                            on: "开",
                                            off: "关",
                                         },
                     //icons: {'off': 'mdi-lightbulb', 'on': 'mdi-lightbulb-on'}
                  },
                  {
                     position: [0, 0.75],
                     width: 0.75,
                     height: 0.75,
                     type: TYPES.SWITCH,
                     id: "switch.hassmart_keting_cxxx_1",
                                         bg: 'device/td.jpg',
                                         //bgOpacity: 0.4,
                                         classes: ["switch-bg"],
                                         states: {
                                            on: "开",
                                            off: "关",
                                         },
                     //icons: {'off': 'mdi-track-light', 'on': 'mdi-track-light'}
                  },
                  {
                     position: [0.75, 0.75],
                     width: 0.75,
                     height: 0.75,
                     type: TYPES.SWITCH,
                     id: "switch.hassmart_keting_cxxxxx_2",
                                         states: {
                                            on: "开",
                                            off: "关",
                                         },
                                         bg: 'device/dengdai.jpg',
                                         classes: ["switch-bg"],
                                         //bgOpacity: 0.4,
                     //icons: {'off': 'mdi-lightbulb', 'on': 'mdi-lightbulb-on'}
                  },
                  {
                     position: [1.5, 0.75],
                     width: 0.75,
                     height: 0.75,
                     type: TYPES.SWITCH,
                     id: "switch.hassmart_keting_cxxxxx_3",
                                         bg: 'device/dd.jpg',
                                         //bgOpacity: 0.4,
                                         classes: ["switch-bg"],
                                         states: {
                                            on: "开",
                                            off: "关",
                                         },
                     //icons: {'off': 'mdi-ceiling-light', 'on': 'mdi-ceiling-light'}
                  },
                  {
                     position: [2.25, 0.75],
                     width: 0.75,
                     height: 0.75,
                     type: TYPES.SWITCH,
                     id: "switch.hassmart_cf_cxxxxx_1",
                                         bg: 'device/cf.jpg',
                                         classes: ["switch-bg"],
                                         //bgOpacity: 0.4,
                                         states: {
                                            on: "开",
                                            off: "关",
                                         },
                     //icons: {'off': 'mdi-ceiling-light', 'on': 'mdi-lightbulb-on'}
                  },
                  {
                     position: [0, 1.5],
                     width: 0.75,
                     height: 0.75,
                     type: TYPES.SWITCH,
                     id: "switch.hassmart_cf_cxxxxx_2",
                                         bg: 'device/bx.jpg',
                                         classes: ["switch-bg"],
                                         //bgOpacity: 0.4,
                                         states: {
                                            on: "开",
                                            off: "关",
                                         },
                     //icons: {'off': 'mdi-ceiling-light', 'on': 'mdi-lightbulb-on'}
                  },
                  {
                     position: [0.75, 1.5],
                     width: 0.75,
                     height: 0.75,
                     type: TYPES.SWITCH,
                     id: "switch.hassmart_cxxxxx_1",
                                         bg: 'device/gd.jpg',
                                         classes: ["switch-bg"],
                                         //bgOpacity: 0.4,
                                         states: {
                                            on: "开",
                                            off: "关",
                                         },
                     //icons: {'off': 'mdi-track-light', 'on': 'mdi-track-light'}
                  },
                  {
                     position: [1.5, 1.5],
                     width: 0.75,
                     height: 0.75,
                     type: TYPES.SWITCH,
                     id: "switch.hassmart_cxxxxx2",
                                         bg: 'device/wc.jpg',
                                         classes: ["switch-bg"],
                                         //bgOpacity: 0.4,
                                         states: {
                                            on: "开",
                                            off: "关",
                                         },
                     //icons: {'off': 'mdi-ceiling-light', 'on': 'mdi-lightbulb-on'}
                  },
                  {
                     position: [2.25, 1.5],
                     width: 0.75,
                     height: 0.75,
                     type: TYPES.SWITCH,
                     id: "light.bedroom_yeelight",
                                         bg: 'device/yeelight.jpg',
                                         classes: ["switch-bg"],
                                         //bgOpacity: 0.4,
                                         title: '主卧台灯',
                                         states: {
                                            on: "开",
                                            off: "关",
                                         },
                     //icons: {'off': 'mdi-desk-lamp', 'on': 'mdi-desk-lamp'}
                  },
                                  {
                                         position: [0, 2.25],
                     width: 0.75,
                     height: 0.75,
                                         type: TYPES.SWITCH,
                                         bg: 'device/airpur.jpg',
                                         classes: ["switch-bg"],
                                         title: '客厅空净',
                                         states: {
                                            on: "开",
                                            off: "关",
                                         },
                                         id: 'fan.air_purifier_livingroom',
                                         icons: {'off': 'mdi-fan-off', 'on': 'mdi-fan mdi-spin'}
                                  },
                                  {
                                         position: [0.75, 2.25],
                     width: 0.75,
                     height: 0.75,
                                         type: TYPES.SWITCH,
                                         bg: 'device/airpur.jpg',
                                         classes: ["switch-bg"],
                                         title: '卧室空净',
                                         states: {
                                            on: "开",
                                            off: "关",
                                         },
                                         id: 'fan.air_purifier_bedroom',
                                         icons: {'off': 'mdi-fan-off', 'on': 'mdi-fan mdi-spin'}
                                  },
                                  {
                                         position: [1.5, 2.25],
                     width: 0.75,
                     height: 0.75,
                                         type: TYPES.SWITCH,
                                         bg: 'device/fan.jpg',
                                         classes: ["switch-bg"],
                                         title: '电风扇',
                                         states: {
                                            on: "开",
                                            off: "关",
                                         },
                                         id: 'fan.xiaomi_smart_fan_1',
                                         icons: {'off': 'mdi-fan-off', 'on': 'mdi-fan mdi-spin'}
                                  },
                                  {
                                         position: [2.25, 2.25],
                     width: 0.75,
                     height: 0.75,
                                         type: TYPES.SWITCH,
                     id: "light.bedroom_yeelight2",
                                         bg: 'device/yeelight.jpg',
                                         classes: ["switch-bg"],
                                         //bgOpacity: 0.4,
                                         title: '次卧台灯',
                                         states: {
                                            on: "开",
                                            off: "关",
                                         },
                     //icons: {'off': 'mdi-desk-lamp', 'on': 'mdi-desk-lamp'}
                                  }
               ]
            },

            {
               title: '',
               width: 2,
               height: 3,
               items: [
                                                {
                                                   position: [0, 0],
                                                   height: 2,
                                                   title: '天气',
                                                   //classes: ['-compact'], // enable this if you want a little square tile (1x1)
                                                   type: TYPES.WEATHER,
                                                   id: 'group.weather',
                                               bg: 'images/bg02.jpg',
                                               bgOpacity: 1,
                                                   state: '&sensor.heweather_cond_txt.state', // label with weather summary (e.g. Sunny)
                                                   icon: '&sensor.heweather_cond_txt.state',
                                                   //iconImage: '&sensor.heweather_cond_txt.state', // use this one if you want to replace icon with image
                                                   icons: {
                                                          '晴': 'clear',
                                                          '多云': 'cloudy',
                                                          '毛毛雨': 'rain',
                                                          '小雨': 'rain',
                                                          '中雨': 'rain',
                                                          '大雨': 'rain',
                                                          '阵雨': 'rain',
                                                          '极端降雨': 'rain',
                                                          '暴雨': 'rain',
                                                          '大暴雨': 'rain',
                                                          '特大暴雨': 'rain',
                                                          '强阵雨': 'rain',
                                                          '雷阵雨': 'rain',
                                                          '强雷阵雨': 'rain',                                                          
                                                          '雨夹雪': 'sleet',
                                                          '雨雪天气': 'sleet',
                                                          '阵雨夹雪': 'sleet',
                                                          '雷阵雨伴有冰雹': 'sleet',
                                                          '小雪': 'snow',
                                                          '中雪': 'snow',
                                                          '大雪': 'snow',
                                                          '暴雪': 'snow',
                                                          '阵雪': 'snow',
                                                          '有风': 'hazy',
                                                          '微风': 'hazy',
                                                          '和风': 'hazy',
                                                          '清风': 'hazy',
                                                          '强风': 'hazy',
                                                          '疾风': 'hazy',
                                                          '清风': 'hazy',
                                                          '烈风': 'hazy',
                                                          '雾': 'fog',
                                                          '薄雾': 'fog',
                                                          '少云': 'partlycloudy',
                                                          '晴间多云': 'partlycloudy',                                                          
                                                          '阴': 'partlycloudy',
                                                   },
                                                   fields: { // most of that fields are optional
                                                          summary: '&sensor.heweather_cond_txt.state',
                                                          temperature: '&sensor.heweather_tmp.state',
                                                          temperatureUnit: '&sensor.heweather_tmp.attributes.unit_of_measurement',
                                                          windSpeed: '&sensor.heweather_wind_spd.state',
                                                          windSpeedUnit: '&sensor.heweather_wind_spd.attributes.unit_of_measurement',
                                                          humidity: '&sensor.heweather_hum.state',
                                                          humidityUnit: '&sensor.heweather_hum.attributes.unit_of_measurement',

                                                          list: [
                                                                 // custom line
                                                                 '空气质量: '
                                                                        + '&sensor.heweather_qlty.state',

                                                                 // another custom line
                                                                 '气压: '
                                                                        + '&sensor.heweather_pres.state'
                                                                        + '&sensor.heweather_pres.attributes.unit_of_measurement',

                                                                 // yet another custom line
                                                                 '风力:'
                                                                        + '&sensor.heweather_wind_dir.state'
                                                                        + '&sensor.heweather_wind_sc.state'
                                                                    + '级'
                                                          ]
                                                   }
                                                },
                                                {
                                                         position: [0, 2],
                                     width: 2,
                                     height: 1,
                                                         type: TYPES.MEDIA_PLAYER,
                                                         state: false,
                                                         bg: 'images/bg04.jpg',
                                                 bgOpacity: 1,
                                                         id: 'media_player.bt',
                                                         title: '蓝牙音箱',
                                                },
                                                {
                                                   position: [1, 0],
                                                   type: TYPES.DEVICE_TRACKER,
                                                   id: 'device_tracker.xxxxxx',
                                                   map: 'yandex',
                                                   states: {
                                                      home: "Home",
                                                      not_home: "Away",
                                                   },
                                                   zoomLevels: [9, 13], // or [9] for only one map slide
                                                   hideEntityPicture: false, //hide entity pic, if you need only map
                                                   slidesDelay: 2 // delay before first slide animation
                                                },
                                                {
                                                   position: [1, 1],
                                                   type: TYPES.DEVICE_TRACKER,
                                                   id: 'device_tracker.xxxxxx',
                                                   map: 'yandex',
                                                   states: {
                                                      home: "Home",
                                                      not_home: "Away",
                                                   },
                                                   zoomLevels: [9, 13], // or [9] for only one map slide
                                                   hideEntityPicture: false, //hide entity pic, if you need only map
                                                   slidesDelay: 2 // delay before first slide animation
                                                }
                                                
               ]
            }
         ]
      },
     ],
}


评分

参与人数 5金钱 +32 收起 理由
evantalk + 16 论坛有你更精彩!
lawsongsong + 5 在下对你的景仰犹如滔滔长江之水,连绵不绝.
潇洒哥er + 1 美美美
weiren526 + 2 膜拜大神!
Mirukuteii + 8 谢谢分享!

查看全部评分

回复

使用道具 举报

6

主题

198

帖子

1533

积分

金牌会员

Rank: 6Rank: 6

积分
1533
金钱
1335
HASS币
0
发表于 2018-8-10 17:36:16 | 显示全部楼层
大神!!
可以发个config 文件参考吗?
回复

使用道具 举报

25

主题

441

帖子

2338

积分

论坛积极会员

积分
2338
金钱
1897
HASS币
0
发表于 2018-8-10 22:53:46 | 显示全部楼层
请教一下  背景图片怎么弄?
回复

使用道具 举报

1

主题

171

帖子

613

积分

高级会员

Rank: 4

积分
613
金钱
442
HASS币
0
发表于 2018-8-11 01:18:57 | 显示全部楼层
有点花,我的也在改,这个用css控制还是挺简单方便的。
回复

使用道具 举报

12

主题

268

帖子

1351

积分

金牌会员

Rank: 6Rank: 6

积分
1351
金钱
1083
HASS币
4
发表于 2018-8-12 11:26:28 | 显示全部楼层
这个厉害,我要好好学习,天天折腾
回复

使用道具 举报

4

主题

442

帖子

2476

积分

金牌会员

Rank: 6Rank: 6

积分
2476
金钱
2034
HASS币
0
发表于 2018-8-12 13:34:05 | 显示全部楼层
Great, learn more, toss more
回复

使用道具 举报

5

主题

188

帖子

1183

积分

金牌会员

小白

Rank: 6Rank: 6

积分
1183
金钱
995
HASS币
0
发表于 2018-8-30 22:03:03 | 显示全部楼层
楼主大大您好,请问背景图片怎么调用啊
回复

使用道具 举报

30

主题

441

帖子

1614

积分

金牌会员

Rank: 6Rank: 6

积分
1614
金钱
1173
HASS币
0
QQ
发表于 2018-9-10 16:51:22 | 显示全部楼层
真的大神,很厉害,崇拜已久
回复

使用道具 举报

25

主题

688

帖子

3630

积分

论坛元老

Rank: 8Rank: 8

积分
3630
金钱
2937
HASS币
219

活跃会员

 楼主| 发表于 2018-9-10 17:06:03 | 显示全部楼层
fotanski 发表于 2018-9-10 16:51
真的大神,很厉害,崇拜已久

不是大神,都是在不断地学习中
回复

使用道具 举报

1

主题

79

帖子

366

积分

论坛积极会员

积分
366
金钱
287
HASS币
0
发表于 2018-9-27 17:10:01 | 显示全部楼层
能把整个的发个压缩包出来么 谢谢
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|小黑屋|Hassbian

GMT+8, 2024-3-28 21:06 , Processed in 0.137609 second(s), 37 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表